jQuery(document).ready(function($) { 
	// fade out any flash messages we may have after 5 seconds
	setTimeout('$("div.message[id$=Message]").fadeOut();', 5000);
	$(".topMenu ul li").hover(
		function () {
			$(this).children('ul').css('display', 'block').css('position', 'absolute');
		}, 
		function () {
			$(this).children('ul').css('display', 'none');
		}
	);
}); 
