$(document).ready(function() {
	$('#mainNav li.toplevel').mouseenter(function() {
		$(this).addClass('over');
		//$(this).children('.dropdown').stop().show();
		$(this).children('.dropdown').show();
	}).mouseleave(function() {
		//if ($(this).hasClass('over')) {
			//$(this).children('.dropdown').stop().fadeOut('fast');
			$(this).children('.dropdown').hide();
			$(this).removeClass('over');
		//}
	});
	
	$('#mainNav').mouseleave(function() {
		hideDropdowns();
	});
	var hideDropdowns = function() {
		//$('#mainNav .dropdown').stop().fadeOut('fast');
		$('#mainNav .dropdown').hide();
		$('#mainNav li.toplevel').removeClass('over');
		
	}
});


