$(document).ready(function(){

	//When mouse rolls over
	$(".products-nav").mouseover(function(){
		$('#subnav-box').stop().animate({height:'140px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$(".products-nav").mouseout(function(){
		$('#subnav-box').stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
});
