$(function(){

//left nav 
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();}
});


});



