$(function() {
	//menu
	var myMenuUl=$("#menu ul");
	var thisText=$(".siteMapPath").text();
	if(thisText==""||thisText==null)//首页
	{
		//首页选中
		myMenuUl.find("li").eq(0).addClass("current thisPage");			
	}
	else{
		//内页选中当前位置
		var topMenuLi=myMenuUl.find("li");
		var thisCurrent=false;
		topMenuLi.each(function(i){
			if(i==0){
				return;
			}
			var thisLi=$(this);
			var thisA=thisLi.find("a").eq(0);
			var aText=thisA.text();
			if(thisText.indexOf(aText)>-1){
				thisLi.addClass("current thisPage");
				thisCurrent=true;
			}
			else{
				thisLi.removeClass("current");
				thisLi.removeClass("thisPage");
			}
		});
		if(!thisCurrent){
			//如果没有任何当前页栏目，选中首页链接
			myMenuUl.find("li").eq(0).addClass("current thisPage");			
		}
	}
});
