if($.browser.msie && parseFloat($.browser.version) < 7){
	$(document).ready(function(){
		$('div.menu-item').mouseenter(function(){
			$(this).find('table').show();
		}).mouseleave(function(){
			$(this).find('table').hide();
		});
	});
}
