jQuery(document).ready(function($) { 
	// fade out any flash messages we may have after 5 seconds
	setTimeout('$("div.message[id$=Message]").fadeOut();', 5000);
	$('#wrapper .leftColumn .menu ul li:last-child').css('background', 'none');
	// Hover fix for IE
	$('#wrapper .menu ul li').hover(
		function() {
			$(this).children('ul').css('display', 'block');
		},
		function() {
			$(this).children('ul').css('display', 'none');			
		}
	);
}); 
Shadowbox.init();