$(document).ready(function() {
	$(".mainNavItem").hover(function() {
		if ($(this).children(".dropdown").is(":hidden")) {
			$(this).children(".dropdown").slideDown();
		}
	}, function(){
		$(this).children(".dropdown").slideUp();	
	});
});