//更改牛视,宽频,视频导航

var rootsitepath="http://v.ifeng.com/";
function GetNavigate(category,kind)
{
	var hosturl=location.href;//获得现有页面路径
	var curl=hosturl.replace(rootsitepath, "");
	var gourl="";
	switch(kind)
	{
		case "1"://视频跳节目,视频跳节目
				gourl=rootsitepath+category+ "/"+curl				
			break;
		case "2"://节目跳视频,牛视跳视频
				gourl=rootsitepath+curl.replace(curl.substring(0,curl.indexOf("/")+1),category);
			break;
		case "3"://节目跳牛视,牛视跳节目
				gourl=rootsitepath+curl.replace(curl.substring(0,curl.indexOf("/")),category);
			break;
	}
var ifirurl=gourl.indexOf("_");//每次都跳转到首页
if(ifirurl!=-1)
{
	gourl=gourl.substring(0,ifirurl)+".shtml";
}

/*if(typeof(external.max_version)!="unknown")
{
	window.open(gourl);
}
else
{
	window.location.href=gourl;
}*/
window.location.href=gourl;

}