function xx()
{
window.location.href="http://www.cycleb2b.com/index.aspx";
}
function x1()
{
window.location.href="http://www.cycleb2b.com/Foot/about_us.htm";
}
function x2()
{
window.location.href="http://www.cycleb2b.com/Foot/server.htm";
}
function x3()
{
window.location.href="http://www.cycleb2b.com/Foot/member.htm";
}
function x4()
{
window.location.href="http://www.cycleb2b.com/Foot/ad.htm";
}
function x5()
{
window.location.href="http://www.cycleb2b.com/Foot/contant.htm";
}
function x6()
{
window.location.href="http://www.cycleb2b.com/Foot/link.htm";
}
function x7()
{
window.location.href="http://www.cycleb2b.com/Foot/sitemap.htm";
}
function x8()
{
window.location.href="http://www.cycleb2b.com/Foot/job.htm";
}
function cells_color()
{
   var background,td=event.srcElement
   if(td.tagName!="TD") //如果事件不是发生在单元格上，退出函数
   {
    return ;
   }
  
   if(event.type=="mouseover") //判断事件类型，决定单元格改变的颜色
   {
    //document.write(event.srcElement.parentElement.rowIndex); //移动到表格哪行;
    background="images/3.jpg";
	document.all.d1.style.cursor="hand";
	//document.GetElementById("d1").style.font-weight="bold";
   }
   else{
    background="images/2.jpg";
   }
  
   tr=td.parentElement //单元格的上两级对象为表格
   //tb=tr.parentElement 
  
   for(var i=0;i<tr.cells.length;i++) //行
   {
    tr.cells[i].background=background;
   }
   /*
   for(var i=0;i<tb.rows.length;i++) //列
   {
    tb.rows[i].cells[td.cellIndex].bgColor=oColor
   }
   */
}