function cli(index)
{
    for(var i=1;i<=3;i++)
    {
        document.getElementById("em"+i.toString()).className ='';
        document.getElementById("cbox"+i.toString()).style.display = 'none';
    }
    document.getElementById("cbox"+index.toString()).style.display = 'block';
    document.getElementById("em"+index.toString()).className ='actli';
}

function bli(index)
{
    for(var i=1;i<=5;i++)
    {
        document.getElementById("ili"+i.toString()).className ='';
        
    }
        document.getElementById("ili"+index.toString()).className ='bigli';
}

// JavaScript Document
jQuery(function($){
	var MyTime = null;
	var index = 0;
	$("#nav li").hover(function(){
		index = $("#nav li").index(this);
		MyTime = setTimeout(function(){
		$(".s_nav").eq(index).show(100).siblings(".s_nav").hide();
		}, 100);
	}, function(){
		clearTimeout(MyTime);	
	});
});
function isIE(){
if (navigator.appName!="Microsoft Internet Explorer") {return false}
return true
}


	
		 


