
//导航对照表定义
var intertable = new Array();
				//url,title,link
intertable[0] = new Array("http://skypetools.tom.com/voucher/"," 立即注册 ","");
intertable[1] = new Array("http://skype.tom.com/download/"," 免费下载","");
intertable[2] = new Array("http://skype.tom.com/products/"," 产品演示","");
intertable[3] = new Array("http://skype.tom.com/ivr/"," 玩转Skype","");
intertable[4] = new Array("http://star.skype.tom.com/"," Skype交友 ","");
intertable[5] = new Array("http://shop.skype.tom.com/"," Skype商城","");
intertable[6] = new Array("http://skype.tom.com/help/"," 帮助中心","");
intertable[7] = new Array("http://skype.tom.com/services/"," 客服中心","");
intertable[8] = new Array("http://skype.tom.com/talk/","Skype访谈","");
intertable[9] = new Array("http://pack.skype.tom.com/","软件酷","");

//数组的个数
//alert(intertable.length);
var lochref = document.location.href;
var fullname=document.location.pathname;
var first_line=fullname.indexOf('/');
var second_line=fullname.lastIndexOf('/');
var dirname=fullname.substring(first_line+1,second_line);

//alert(second_line);

var navstr = 
"<table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin-top:3\">		"+
"  <tr>                                                                                                         "+
"    <td width=\"8\"><img src=\"http://skype.tom.com/images/5_1_19.gif\" width=\"8\" height=\"37\" alt=\"\"></td>"+
"    <td background=\"http://skype.tom.com/images/5_1_20.gif\"> <img src=\"http://skype.tom.com/images/arrow.gif\" width=\"12\" height=\"12\" hspace=\"5\" align=\"absmiddle\"> 免费二级域名转发系统 ";

//document.writeln("<table width=\"778\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin-top:3\">																																																																			  ");
//document.writeln("  <tr>                                                                                                                                                                                                                                                ");
//document.writeln("    <td width=\"8\"><img src=\"http://skype.tom.com/images/5_1_19.gif\" width=\"8\" height=\"37\" alt=\"\"></td>                                                                                                                                                           ");
//document.writeln("    <td background=../121.tmpl_files//%22images/5_1_20.gif/%22> <img src=\"http://skype.tom.com/images/arrow.gif\" width=\"12\" height=\"12\" hspace=\"5\" align=\"absmiddle\"><a href=\"http://www.tom.com\">TOM首页</a>>");
//document.writeln("      <a href=\"http://skype.tom.com\">TOM & Skype首页></a>");

var tmpstr = lochref.substring(0,lochref.lastIndexOf('/'));
//alert(tmpstr);
for ( i = 0 ; i < intertable.length ; i ++ )
{
	if( tmpstr.toLowerCase() == intertable[i][0].substring(0,tmpstr.length).toLowerCase() )
	{
		//alert("ok");
		navstr = navstr + intertable[i][1];
		break;
	}
}

//if(dirname=="download")
//document.writeln("      免费下载　");
//else if(dirname=="products")
//document.writeln("      产品演示　");
//else if(dirname=="help")
//document.writeln("      帮助中心 ");
//else if(dirname=="customer")
//document.writeln("      客服中心");
//else 
//document.writeln("      hehe");

navstr = navstr + 
"      </td>"+
"    <td background=\"http://skype.tom.com/images/5_1_20.gif\"> <div align=\"right\">        <img src=\"http://skype.tom.com/images/arrow1.gif\" width=\"4\" height=\"12\" hspace=\"5\" align=\"absmiddle\">"+
"        <img src=\"http://skype.tom.com/images/arrow1.gif\" width=\"4\" height=\"12\" hspace=\"5\" align=\"absmiddle\">"+
"        <img src=\"http://skype.tom.com/images/arrow1.gif\" width=\"4\" height=\"12\" hspace=\"5\" align=\"absmiddle\"> "+
"      </div></td>"+
"    <td width=\"7\"><img src=\"http://skype.tom.com/images/5_1_22.gif\" width=\"7\" height=\"37\" alt=\"\"></td>"+
"  </tr>"+
"</table>";

document.write(navstr);

//document.writeln("      </td>");
//document.writeln("    <td background=\"http://skype.tom.com/images/5_1_20.gif\"> <div align=\"right\"><img src=../121.tmpl_files//%22images/arrow1.gif/%22 width=\"4\" height=\"12\" hspace=\"5\" align=\"absmiddle\">告诉朋友");
//document.writeln("        <img src=\"http://skype.tom.com/images/arrow1.gif\" width=\"4\" height=\"12\" hspace=\"5\" align=\"absmiddle\">Skype招聘 ");
//document.writeln("      </div></td>");
//document.writeln("    <td width=\"7\"><img src=\"http://skype.tom.com/images/5_1_22.gif\" width=\"7\" height=\"37\" alt=\"\"></td>");
//document.writeln("  </tr>");
//document.writeln("</table>");