$(function(){
var temp=$("#temp").attr("value");
$("#menu a").removeClass("now");
$("#menu a").eq(temp).addClass("now") 

//nav now
var str=window.location.href;
$("dt a").each(function(){
var ahref = $(this).attr("href") 
if(ahref==str)
{$(this).addClass("on");$(this).parents("dt").next("dd").show();}
});

$("dd a").each(function(){
var ahref = $(this).attr("href") 
if(ahref==str)
{$(this).addClass("on");$(this).parents("dd").show();}
});

//
$("#lanPop li").hover(function(){
$(this).addClass("ovo");
},function(){
$(this).removeClass();
});



$("#lanBox").mousemove(function(){
$("#lanPop").show();  
});


$("#lanPop li").click(function(){$("#lanPop").hide();});
$("html").click(function(){$("#lanPop").hide();});


		   })
