$(document).ready(function(){
	
	//delay function
	jQuery.fn.delay = function(time,func){
		return this.each(function(){
			setTimeout(func,time);
		});
	};
	
	//nav dropdowns
	$('#nav').superfish({
		delay: 250,
		animation: {
		  opacity: 'show'
		},
		autoArrows: false,
		dropShadows: false
	  });
	  
	 //assign classes
	 $('nav.main ul#nav ul li:first-child').addClass('first');
	 $('#footer .f-links a:last-child, nav.main ul#nav ul li:last-child').addClass('last');
	  
	  //tooltip
	  $('.social-tip').tooltip({ relative: true, position: "center left", effect: 'slide', offset: [16,0] });
	  
	/* clear and restore search fields */
	 $('#search input#search_term').val('Search');
	 $('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
	$('.map').colorbox({iframe:true,width:666, height:574, scrolling:false, opacity: .4, onLoad: function() {$('#cboxClose').remove();}});
	//$('.live-stream').colorbox({iframe:true,width:546, height:506, scrolling:false, opacity: .4, onLoad: function() {$('#cboxClose').remove();}});
	
	$('.login-link .thickbox, #comments .thickbox').colorbox({iframe:true,width:400, height:250});
	$('#footer .thickbox').colorbox();
	$('.rsvp .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});
	
	
}); 
