$(document).ready(function(){
	
			/* clear and restore search fields */
			 $('#search input#search_term').val('Search');
			 $('input#newsletter_submit').wrap('<p id="nls_wrap"></p>');
			 $('#search_term').removeClass('clearClick').addClass('clickClear');
			 $('#newsletter_text').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 .thickbox, #comments .thickbox, #footer .thickbox, #text .thickbox').colorbox({iframe:true,width:400, height:250});
			$('.rsvp .thickbox').colorbox({iframe:true,width:450, height:570});  
			$('#options .thickbox,.store #text .thickbox,body.store #text .thickbox').colorbox({iframe:true,width:500, height:570});
			$('#mn-links a:last-child,#home-headlines .f-column:last').addClass('last');
			$('li#subnav_how-you-can-help_volunteer_meals-that-heal a').colorbox({iframe:true,width:815, height:700});
			$('li#subnav_how-you-can-help_volunteer_family-activities a').colorbox({iframe:true,width:815, height:750});
			$('li#subnav_how-you-can-help_volunteer_large-groups a').colorbox({iframe:true,width:815, height:750});
			$('.content-pu').colorbox({iframe:true,width:815, height:750});
			
			//nav slide down
			$('#nav li ul').hide();
			$('#nav li').hover(function(){
				$(this).find("ul").slideDown('medium'); 
			},function(){
				$(this).find('ul').hide();
			}); 
			
			//subcontent random image
			$(function() {
				var els = $('#sub-content #family-rotator img').get();
				var img_on=Math.floor(Math.random()*els.length)
				$('#sub-content #family-rotator img').hide();
				$('#sub-content #family-rotator img:eq(' + img_on + ')').show();
			});

});
