window.onload = init;
function init()
{
var temp=document.getElementById("lenta");
if(temp==null)
{
return;
}
var win_wid=document.body.offsetWidth;
temp.style.width=win_wid+"px";
}

function switchMap(id,obj)
{
  if(this.id=="active2")
  return;
  var temp=document.getElementById("map");
  var map_link=document.getElementById("map_link");
  switch(id)
  {
    case 1:
      temp.src="img/map1.jpg";
      map_link.href="http://maps.google.com/maps/ms?ie=UTF8&hl=ru&msa=0&msid=111006631819424802721.0004891227e472bbcf2e8&ll=47.863493,35.103486&spn=0.0074,0.027466&z=16&iwloc=000489122f0df219a5f98";
    break;
    case 2:
      temp.src="img/map2.jpg";
      map_link.href="http://maps.google.com/maps/ms?ie=UTF8&hl=ru&msa=0&msid=111006631819424802721.0004891247869bf8962c9&ll=47.879455,35.093679&spn=0.029589,0.109863&z=14&iwloc=000489124c3834f39782d";
    break;
  }
  document.getElementById("active2").id="";
  obj.id="active2";
}
