// JavaScript Document
$(document).ready(function(){

	//When mouse rolls over
	$("#navDrop").mouseover(function(){
		$("#dropMenu").stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutCubic'});
	});
	
	//When mouse is removed
	$("#navDrop").mouseout(function(){
		$("#dropMenu").stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutCubic'});
	});
	
	$("#dropMenu").mouseover(function(){
		$(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutCubic'});
	});
	
	//When mouse is removed
	$("#dropMenu").mouseout(function(){
		$(this).stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutCubic'});
	});

});
