$(function()
{
	$('#mainNav ul li').hover(
		function() 
		{ 
			$('ul', this).css('display', 'block');
			$(this).addClass('hoverWithChild');
		},
		function() 
		{ 
			$('ul', this).css('display', 'none');
			$(this).removeClass('hoverWithChild');
		}
	);
});
