$(function(){

//left nav 
 var objdt = $("#nav dt");
 var objdd = $("#nav dd");
 
 objdt.hover(function(){
    $(this).addClass("ov");
	//var thisdd = $(this).next("dd")
	if( $(this).next("dd").find("li").length!=0)
	{
		$(this).next("dd").show();
		//alert("1")
		
		}
	
    
 },function(){
	$(this).removeClass("ov");
    $(this).next("dd").hide();
 });
 
 objdd.hover(function(){
   objdt.unbind("hover");
   $(this).show(); 
   $(this).prev("dt").addClass("ov");
   
 },function(){
   $(this).prev("dt").removeClass("ov");  
   $(this).hide(); 
 })
 
 var temp=$("#temp").attr("value");
$("#menu a").removeClass("now");
$("#menu a").eq(temp).addClass("now") 
 
 
 
 
})

