jQuery(document).ready(function($) {
    
  //search box text function
  $('input#s').click(function(){
  	if ( $(this).val() == 'Search our site...' ) { 
  		$(this).val('');
  	}
  });
  $('input#s').blur(function(){
  	if ( $(this).val().length < 1 )
  		$(this).val('Search our site...');
  });
  
  //homepage slideshow
  if ( $('#slider').length > 0 ) {
	$.featureList(
		$("#tabs li"),
		$("#output li.top"), {
			start_item	:	0, 
			slide_interval : 8000
		}
	);
  }
  
  $('ul.menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
  
});
