function helpLeftMenu() {
var catid = $("#cats").val();
/*$(".leftdir dt:first span").addClass("expand");*/
$(".leftdir dd:first").css({ display: 'block' });

$(".leftdir dd:not(:first)").css({ display: 'none' });
	
var oItem = $(".leftdir dd > ul > li");
for ( var j = 0; j < oItem.length; j++ ) {
	if ( $(oItem[j]).hasClass('current') ) {
		$(oItem[j]).parents('dd').css({ display: 'block' });
		var _index = $('.leftdir dd').index($('dd:visible'));
		$($('.leftdir dt')[_index]).addClass('expand');
//		$(oItem[j]).parents('dd').siblings().html()
		
		break;
	}
	else{
		if(catid==''){
			$(".leftdir dt:first").addClass("expand");
			$(".leftdir dd:first").css({ display: 'block' });
		}
		$(oItem[j]).parents('dd').css({ display: 'none' });
		
	}
}
	
	$(".leftdir dt").bind("click",function(){
		if($(this).attr("class") != "expand"){
			$(".leftdir dd:visible").slideUp(300);
			$(".expand").removeClass("expand");
		}		
		$(this).toggleClass("expand");
		$(this).next().slideToggle(300);
		
	}); 					   	
}
