window.onload = init;

function init()
{
   setDiv();
   LoadGMaps();
}

function setDiv()
{
   document.getElementById('index-10_').style.height=document.getElementById('index-09_').offsetHeight + 'px';
   document.getElementById('index-20_').style.height=document.getElementById('index-09_').offsetHeight - 210 + 'px';
   document.getElementById('index-13_').style.height=document.getElementById('index-09_').offsetHeight - 73 + 'px';

   document.getElementById('index-21_').style.top = document.getElementById('index-09_').offsetTop + document.getElementById('index-09_').offsetHeight + 'px';
   document.getElementById('index-22_').style.top = document.getElementById('index-09_').offsetTop + document.getElementById('index-09_').offsetHeight + 'px';
   document.getElementById('index-23_').style.top = document.getElementById('index-09_').offsetTop + document.getElementById('index-09_').offsetHeight + 'px';
}

function LoadGMaps()
{
   if (GBrowserIsCompatible())
   {
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GSmallMapControl());
      map.setCenter(new GLatLng(50.813894327795174, 16.27932446105957), 15);
      var info='<img src="http://mobico.pl/test0/files/logo-male.gif" alt="" /><br/><br/><table cellpadding="0" cellspacing="0" class="content2"><tr><td width="50">&nbsp;</td><td>&nbsp;</td><td>ul. Topolowa 23a</td></tr><tr><td width="50">&nbsp;</td><td>&nbsp;</td><td>50-309 Wałbrzych</td></tr></table>';
      var point = new GLatLng(50.813894327795174, 16.27932446105957);
      var marker = new GMarker(point);
      GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(info); } );
      map.addOverlay(marker);
      marker.openInfoWindowHtml(info);
   }
}
