function show(id) {
    var d = document.getElementById('smenu'+id);
 	if(navigator.appName == 'Microsoft Internet Explorer'){
        if(!(document.getElementById('menu'+id)).contains(window.event.fromElement)){
            if (d) {
                d.style.display='block';                         
            }
        }
	}
	else{	
        if (d) {
            d.style.display='block';
        }
	}
}

function hide(id) {
   	var d = document.getElementById('smenu'+id);   
	if(navigator.appName == 'Microsoft Internet Explorer'){
	    if(!(document.getElementById('menu'+id)).contains(window.event.toElement)){
	        if (d) {
	            d.style.display='none';	           
            } 
        }
	}
	else{
        if (d) {
            d.style.display='none';
        }
	}	
}

function initHeader()
{  
    if($.browser.msie && $.browser.version.indexOf('6.')>=0)
    {
    	$('ul#nav li.k6').hover(
        	function(){
    			$(this).addClass('hovk6');				
        	},function(){
        		$(this).removeClass('hovk6');				
        	});
        $('ul#nav li.k6s').hover(
        	function(){
    			$(this).addClass('hovk6s');				
        	},function(){
        		$(this).removeClass('hovk6s');				
        	});		 	
    	 $('ul#nav li.k').hover(
        	function(){
    			$(this).addClass('hov');
        	},function(){
        		$(this).removeClass('hov');
        	});		
      }
}
$(document).ready(function() {initHeader();});