
    	
    $(document).ready(function()
      {
    	$(".main_menu li").hover(
    			  function () {	  
    				  $(this).children('a').addClass('hover');
    				  
    				  var IECorrect = $(this).width()+20;
    				  
    				  if ($.browser.msie && ($.browser.version == 7 || $.browser.version == 6)) {
    					  $(this).children('.sub_menu').css('margin-left', '-'+IECorrect)
    				  }
    				  
    				  
    				  $(this).children('ul').show();
    			  },
    			  function () {  
    				  $(this).children('a').removeClass('hover');

    				  $(this).children('ul').hide();
    			  }
    			);
      });
     

