function switchIndexTag(idindex)
{
  var tab="tab"+idindex;
  var tabv="tabv"+idindex;
  for(i=1; i <5; i++)
  {
    if ("tab"+i==tab)
    { 
      document.getElementById(tab).className  ="ctd";
	  document.getElementById("span"+i).className="indexLink";
	  if (i<6){  document.getElementById("tabv"+i).className="";}
    }else{
      document.getElementById("tab"+i).className ="nctd";
	  document.getElementById("span"+i).className="linkDarkBlue";	  
	  if (i<6){ document.getElementById("tabv"+i).className="hicontent";}
    }

  }
}

function switchhotjob(showflag)
{
 
  if (document.getElementById("chkhotjob").checked || showflag=='1'){
	  
	  document.getElementById("hotjobtab").className="";
	  
	}else{
		
	document.getElementById("hotjobtab").className="hicontent";
	
	}

	
}
  
