
	    		 $(document).ready(function(){ 
		    	    $("ul.sf-menu").superfish({ 
						speed: 'fast',
	            		delay:     250               // 1.2 second delay on mouseout 
		     	   }); 
    			});

						$(function () {

							$('.SFDrop a').hover(function () {
								$(this).stop(true).animate({paddingLeft: '20px'}, {speed: 100, easing: 'easeOutBack'});
								}, function () {
									$(this).stop(true).animate({paddingLeft: '10px'}, {speed: 100, easing: 'easeOutBounce'});
								});
							});
