jQuery(document).ready(function() {	
	jQuery('ul.sf-menu').superfish(					  
		{ 
			delay:       40,                               // no delay on mouseout  
			speed:       1,                          // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: false,                           // disable drop shadows 
			disableHI:   true             				  // set to true to disable hoverIntent detection 
		}						  
	);
	
	
	
});

function showHideSearch(){
	jQuery('#searchFormArea').toggle();
}