var centreLatitude = -37.796985;
var centreLongitude = 144.985554;
var startZoom = 16;

// George st - http://maps.google.com.au/maps?f=q&hl=en&geocode=&q=131+george+st+fitzroy&sll=-37.804906,144.980779&sspn=0.002149,0.004275&ie=UTF8&ll=-37.803935,144.98065&spn=0.008596,0.017102&z=16&iwloc=addrvar
// Keele st - <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com.au/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=15+Keele+Street,+Collingwood,+Victoria&amp;sll=-25.335448,135.745076&amp;sspn=39.413301,79.013672&amp;ie=UTF8&amp;hq=&amp;hnear=15+Keele+St,+Collingwood+Victoria+3066&amp;z=14&amp;ll=-37.796985,144.985554&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com.au/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=15+Keele+Street,+Collingwood,+Victoria&amp;sll=-25.335448,135.745076&amp;sspn=39.413301,79.013672&amp;ie=UTF8&amp;hq=&amp;hnear=15+Keele+St,+Collingwood+Victoria+3066&amp;z=14&amp;ll=-37.796985,144.985554" style="color:#0000FF;text-align:left">View Larger Map</a></small>
markers = [
  {
    'latitude': -37.805834,
    'longitude': 144.9805,
    'mname': 'The Compound Interest',
    'icon': 'tci-pin-upsidedown.png',
    'h':200,
    'w':152,
    'anchorH':200,
    'anchorW':60,
    'windowH':50,
    'windowW':100,
    'desc': '<div id="blurb"><h2>The Compound Interest<br />Centre for The Applied Arts<br />(First Ed., 2008-2010)</h2><h3>89 George St<br />Fitzroy 3065<br /> +61 3 8060 9745</h3>Good times, great classic hits.<br /><br /><br /></div>'
  },
  {
    'latitude': -37.796985, 
    'longitude': 144.985554,
    'mname': 'Compound 2',
    'icon': 'tci-pin-text.png',
    'h':200,
    'w':152,
    'anchorH':200,
    'anchorW':60,
    'windowH':50,
    'windowW':100,
    'desc': '<div id="blurb"><h2>The Compound Interest<br />Centre for The Applied Arts<br />(Second Ed., 2010-)</h2><h3>15-25 Keele St<br />Collingwood 3066<br /> +61 3 8060 9745</h3>Comprising <a href="http://www.asmallpress.com">A Small Press</a>, <a href="http://www.chaseandgalley.com">Chase &amp; Galley</a>, <a href="http://www.goldengrouse.com">The Golden Grouse</a>, Idlewild Press, <a href="http://www.jackywinter.com">The Jacky Winter Group</a>, <a href="http://www.lamingtondrive.com">Lamington Drive</a>, <a href="http://www.modernmotorcyclecompany.com/">Modern Motor Cycle Company</a>, Something Together/Pinup, Speakeasy, <a href="http://www.thatmob.com.au">That Mob</a> <br />and a Secret Tunnel to Shebangabang.<br /></div>'
  }
];

var sparrowTabs = [
  new GInfoWindowTab("About us", 
        '')
];


var imagePath = 'images/';

var map;

function init() {
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById("map"));
    map.setMapType(G_NORMAL_MAP);
    map.addControl(new GSmallMapControl());
    var location = new GLatLng(centreLatitude,centreLongitude);
    map.setCenter(location, startZoom);

    for(i=markers.length-1; i>-1; i--) { 
      addMarker(markers[i]); 
    }  
  }
}

function addMarker(marker) {
  
  var pin;
  
  if(marker.icon!='') {
    var latlng = new GLatLng(marker.latitude,marker.longitude);
    
    var icon = new GIcon();
    icon.image = imagePath + marker.icon;
    icon.iconSize = new GSize(marker.w,marker.h);
    icon.iconAnchor = new GPoint(marker.anchorW,marker.anchorH);
    icon.infoWindowAnchor = new GPoint(marker.windowW,marker.windowH);
    pin = new GMarker(latlng, icon);
  } else {
    pin = new GMarker(latlng);
  }
  
  GEvent.addListener(pin, 'click',
    function() {
      if (marker.mname == 'Barking Sparrows HQ') {
        pin.openInfoWindowTabsHtml(sparrowTabs, {
          selectedTab:0,
          minWidth:500
        });
      } else {
        pin.openInfoWindowHtml(marker.desc, {
          maxWidth:300
        });
      }
    }
  );
  
  map.addOverlay(pin);
}

window.onload = init;
window.onunload = GUnload;