jQuery(document).ready(function(){
	if(jQuery.browser.msie==true && (jQuery.browser.version=="7.0" || jQuery.browser.version=="6.0")) {
		jQuery('#main_navi li').bind('mouseover', function(){
			jQuery(this).children('a').css({'background-color': '#056938', 'color': '#fff'});
			jQuery(this).children('ul').show();
			jQuery(this).children('ul').css({'z-index':'99999','zoom':'1'});
		});		
		jQuery('#main_navi li').bind('mouseleave', function(){
			jQuery(this).children('a').css({'background-color': 'transparent', 'color': '#056938'});
			jQuery(this).children('ul').hide();
		});
	}	
});
