$(function(){
    $(".ssmenu").hide();
	$(".menu a").each(function(){
		if((location.href).toString().indexOf(this.href)!=-1){
			$(this).parent("dt").next().show();
		}
	});
	$(".ssmenu a").each(function(){
		if((location.href).toString().indexOf(this.href)!=-1){
			$(this).parents("dd").show();
		}
	});
    $(".menu a").each(function(){
		ledd = $(this).parent("dt").next();
		
     if ($("a",ledd).length > 1) {
            $(this).bind("click", function(){
                		$(".ssmenu").hide()
                $(this).parent("dt").next(".ssmenu").show()
                return false;
            })
        };
            });
});

