var areasdat="<UL style='margin:0px'>";
//areasdat+="<LI style='width:58px;height:21px;float:left;'><A href='#' onMouseOver='switcharea(1);' onClick='return false;'><SPAN class='style2'>甘  肃</SPAN></A></LI>";
//areasdat+="<LI style='width:58px;height:21px;float:left;'><A href='#' onMouseOver='switcharea(2);' onClick='return false;'><SPAN class='style2'>青  海</SPAN></A></LI>";
//areasdat+="<LI style='width:58px;height:21px;float:left;'><A href='#' onMouseOver='switcharea(3);' onClick='return false;'><SPAN class='style2'>宁  夏</SPAN></A></LI>";
areasdat+="</UL>";

areasdat+="<UL style='margin:0px;display:block' id='area1'>";
areasdat+="<LI style='width:58px;height:21px;float:left'><A href='http://area.ezjob.cc/lanzhou'>兰  州</A></LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>白  银</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>天  水</LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>平  凉</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>庆  阳</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'><A href='http://area.ezjob.cc/longnan'>陇  南</a></LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>定  西</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>临  夏</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>甘  南</LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>武  威</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>张  掖</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>金  昌</LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>嘉峪关</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>酒  泉</LI>";
areasdat+="</UL>";

areasdat+="<UL style='margin:0px;display:none' id='area2'>";
areasdat+="<LI style='width:58px;height:21px;float:left'><A href='http://area.ezjob.cc/xining'>西  宁</A></LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>格尔木</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>海  东</LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>海  南</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>海  西</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>海  北</LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>黄  南</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>果  洛</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>玉  树</LI>";
areasdat+="</UL>";

areasdat+="<UL style='margin:0px;display:none' id='area3'>";
areasdat+="<LI style='width:58px;height:21px;float:left'><A href='http://area.ezjob.cc/yinchuan'>银  川</A></LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>石嘴山</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>吴  忠</LI>";

areasdat+="<LI style='width:58px;height:21px;float:left'>中  卫</LI>";
areasdat+="<LI style='width:58px;height:21px;float:left'>固  原</LI>";
areasdat+="</UL>";
document.getElementById("selArea").innerHTML=areasdat;

function switcharea(aid)
{
  for (var i=1;i<=3;i++)
     {
       if (parseInt(aid)==i)
          {
           document.getElementById("area"+i).style.display="";
          }
       else
          {
           document.getElementById("area"+i).style.display="none";
          }
     }
}

function showsArea(sign)
{
  var areaLayer=document.getElementById("selArea");
  
 if (parseInt(sign)==1)
     {
      areaLayer.style.display="block";
     }
  else
     {
      areaLayer.style.display="none";
     }
}