$(document).ready(function(){
	/* clear and restore search fields */
	 $('#search input#search_term, input#search_term2').val('Search');
	 $('input#newsletter_submit').wrap('<p id="nls_wrap"></p>');
	 $('#search_term,#search_term2').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').colorbox({iframe:true,width:400, height:250});
	$('#footer .thickbox').colorbox();
	$('#content .slideshow').colorbox({
		slideshow:true,
		photo:true,
		preloading:true,
		slideshowSpeed:5000,
		slideshowAuto:false
		});
	$("a[title=Checkout].thickbox").colorbox({iframe:true,width:450, height:570}); 
	$('.rsvp .thickbox').colorbox({iframe:true,width:450, height:570});
	$('#options .thickbox,.section .thickbox').colorbox({iframe:true,width:500, height:570});  
	//@end 
	
	$("#footer .sep:last").hide();
	
	if($("#sidebar #qrotate").length > 0){
	   $.getScript("/_js/jquery.cycle.lite.1.0.min.js",function(){
		   $("#sidebar #qrotate").cycle({
			     timeout:9000,
			     speed:1000
			});   
		});
	}    

}); //@end doc ready