$(document).ready(function(){
			
		var method1 = 'easeInOutQuad';
		var method2 = 'easeInOutQuad';
	
	$('#nav3 li').hover(function(){
		$(".slide", this).stop().animate({top:'0px'},{queue:false,duration:300, easing: method1});
	}, function() {
		$(".slide", this).stop().animate({top:'-96px'},{queue:false,duration:200, easing: method2});
		
	});


		
	$('#nav4 li').hover(function(){
		$(".slide", this).stop().animate({top:'0px'},{queue:false,duration:300, easing: method1});
	}, function() {
		$(".slide", this).stop().animate({top:'-96px'},{queue:false,duration:200, easing: method2});
	
	});
	
		
				
});
