/*$(function() {
	$(".dropdown").hide();
	$(".mainNav").mouseover (function() {
		$(".dropdown", this).show();
	});
	$(".mainNav").mouseout (function() {
		$(".dropdown", this).hide();
	});
});*/
$(function() {
	$(".dropdown").hide();
	$(".mainNav").mouseover (function() {
		$(this).children(".dropdown").show();
	});
	$(".mainNav").mouseout (function() {
		$(this).children(".dropdown").hide();
	});
});