$(document).ready(function ()
{   

$('#navi ul.main').find('li.main ul.sub').hide();

	$('#navi ul.main').each(function(){
    
    		$(this).bind('mouseover', function(){
      
      			$('#navi ul.main li.main ul.sub').each(function(){
        			window.setTimeout("$(this).hide()",500)
      			});
      
      			$(this).find('li.main ul.sub').show();
      			
      			var browser = jQuery.browser;
		        if(browser.msie && browser.version < 7) {
          			if($(this).attr('id') == "main_2" || $(this).attr('id') == "main_3" || $(this).attr('id') == "main_4") {
         				$(this).css({
            					paddingTop: '5px'
          				});
            			}
        		}
     
      
    		});
    
    		$(this).bind('mouseout', function(){
      			var item = $(this);
      			var test = " ";
      			test = item;
      			var browser = jQuery.browser;
		
    			item.find('li.main ul.sub').hide();


			if(browser.msie && browser.version < 7) {
          			if($(this).attr('id') == "main_2" || $(this).attr('id') == "main_3" || $(this).attr('id') == "main_4") {
            				$(this).css({
              					paddingTop: '0px'
            				});
          			}
        		}

   		 });
    
  	});
  
});