jQuery(document).ready(function($) { 
	// Hover fix for IE
	$('#wrapper .menu ul li').hover(
		function() {
			$(this).children('ul').css('display', 'block');
		},
		function() {
			$(this).children('ul').css('display', 'none');
		}
	);
	// remove menu div
	$('#wrapper .menu ul li:last-child').css({'background-image':'none', 'padding-right':0, 'padding-bottom':0});
}); 
