$("document").ready(function(){ 
    
	//classes
	 $("#nav li li:last-child, #footer #feature-links a:last, #footer-copyright .sitemap a:last, #nav li:last").addClass("last");
	 $('#nav li').has('ul').addClass("dd-menu");
	 
	 //other
	if ($('#articles ul.media li').length == 0){
					$('#articles .media').remove();
	}
	
	if ($('aside.colSpan2 section').length == 0){
					$('aside.colSpan2').remove();
	}
	
	$("#footer-features #banners a").each(function() {
				var href = $(this).attr("href");
				if(href == ' ') { 
					$(this).replaceWith($(this).children()); 
				}
			});
	
	//tweets
	 $("#tweet").getTweets({
					twitter_user: "tbclife",
					howmany:1,
					tweetstring:"<p>{tweettext}</p>"
			});
			
 	// clear and restore search fields
	 $('#search input#search_term').val('Search');
	 $('#newsletter_submit').wrap('<p id="nls_wrap"></p>');
	 $('#search_term').removeClass('clearClick').addClass('clickClear');
	 $('#newsletter_text').removeClass('clearClick').addClass('clickClear');
	 $('.clickClear').focus(function() {
	    startText = $(this).val();
	    $(this).val('').addClass('focus');
	 });
	 $('input.clickClear').blur(function() {
	    blurText = $(this).val();
	    if (blurText == '') {
	       $(this).val(startText).removeClass('focus');
	    };
	 }); 
	  

	$('.login .thickbox, #comments .thickbox').colorbox({iframe:true,width:400, height:250});
	$('#footer .thickbox').colorbox();
	$('.slideshow').colorbox({
		slideshow:true,
		photo:true,
		preloading:true,
		slideshowSpeed:5000,
		slideshowAuto:false
		});
	$('.rsvp .thickbox, #subnav .thickbox').colorbox({iframe:true,width:450, height:570});
	$('#content a[title=Donate].thickbox, #options .thickbox,.section .thickbox').colorbox({iframe:true,width:500, height:570});
	$('.video-popup').colorbox({iframe:true, width:480, height:270});
 
	
});
