$(document).ready(function() {
						   
			$('.mainNav').children('ul.selectNav').hide();
		$('.mainNav').children('li').hover(
			function(event) {
				$(this).children('.selectNav').fadeIn('fast');
				event.stopPropagation();
			},
			function(event) {
				$(this).children('.selectNav').fadeOut('fast');
				event.stopPropagation();
			}
		);
			   
})