// Start the dropdown menu (function($){ 	$(document).ready(function() { $('ul.sf-menu').superfish({ delay: 200,												// delay on mouseout animation: {opacity:'show',height:'show'}, autoArrows: false,										// disable generation of arrow mark-up dropShadows: false,									// disable drop shadows speed: &quot;fast&quot; }); }); })(jQuery); // Move dropdown links on hover 	(function($){ 	$(document).ready(function(){ 		$(&quot;.sf-menu ul a&quot;).css({ 			paddingLeft: &quot;15px&quot;, 			backgroundPosition: &quot;0px 12px&quot; 			}); 		$(&quot;.sf-menu ul a&quot;).hover(function() { 		$(this).stop().animate({ 			paddingLeft: &quot;25px&quot;, 			backgroundPosition: &quot;10px 12px&quot; 			}, 'fast'); 		}, function() { 		$(this).stop().animate({ 			paddingLeft: &quot;15px&quot;, 			backgroundPosition: &quot;0px 12px&quot; 			}, 'fast'); 		}); 	}); 	})(jQuery); // Set background of dropdown to 90% opacity - fix for IE naturally. (function($){ 	 	$(document).ready(function(){ 		$(&quot;.sf-menu li ul&quot;).css({ 						 			}); 		 		}); })(jQuery);//--------------------------------------------- //--------------------------------------------
