// Top nav dropdown functionality
$(document).ready(function(){
	
	$(".mx-topnav-item").hoverIntent(
	{
		'over' : 	function()
					{
						$(this).children("div").animate({top: "0px"}, 300);
					},
		'out' : 	function()
					{
						intDivHeight = $(this).children("div").outerHeight() + 20; // Add 20 to take into account the space above the list
						$(this).children("div").animate({top: "-" + intDivHeight + "px"}, 300);
					},
		'interval' : 200
	});
});

