$(document).ready(function(){
		  
	 //assign classes
	 $('#nav li li:last-child').addClass('last');
	 $('#subnav li:first-child').addClass('first');
	  
	/* clear and restore search fields */
	 $('#searchbox input#search_term').val('Search The Crossing');
	 $('input#newsletter_submit').wrap('<p id="nls_wrap"></p>');
	 $('#search_term, #search_term2').removeClass('clearClick').addClass('clickClear');
	 $('input.clickClear').focus(function() {
	    startText = $(this).val();
	    $(this).val('').addClass('focus');
	 });
	 $('input.clickClear').blur(function() {
	    blurText = $(this).val();
	    if (blurText == '') {
	       $(this).val(startText).removeClass('focus');
	    };
	 });   

	// color box launch
	/*
	$('.login-link .thickbox, #comments .thickbox').colorbox({iframe:true,width:400, height:250});
	$('.rsvp .thickbox, .content a[title=Donate].thickbox').colorbox({iframe:true,width:450, height:570});
	$('#options .thickbox,.section .thickbox, a[title=Edit Your Profile].thickbox').colorbox({iframe:true,width:500, height:570});
	*/

	// colorbox launch
	$('a.thickbox').colorbox({iframe:true,width:500, height:600}); // Default
	$('a.thickbox[href*="loginMCMS.php"]').colorbox({iframe:true,width:450, height:300}); // Small
	
	
	//other
	if ($('#articles ul.media li').length == 0){
					$('#articles .media').remove();
	}
	
	$(".poweredby a[href^='http']").attr('target','_blank');
	
	
}); 
