/*
 G MOSS CONSULTING & SALES
 Copyright 2002/2012 Gerard Moss. All Rights Reserved.
  -  gerard.moss&#64;gmail.com |  mail
  -  +1-506-386-2112           |  voice

 This site has been hand-crafted by Jason D. Moss.
  - www.jdmlabs.com           |  web
  - jason.moss&#64;gmail.com  |  mail
  - +1-403-850-1496           |  voice

 Mapstraction - http://www.mapstraction.com/
*/
$(window).load(function() {
  var mapstraction = new Mapstraction('google_map','google');
  var myPoint = new LatLonPoint(44.680372,-63.5817);

  mapstraction.setCenterAndZoom(myPoint, 14);
  mapstraction.addControls({
    pan:      true,
    zoom:    'small',
    overview: false,
    scale:    true,
    map_type: true
  });
  marker = new Marker(myPoint);
  mapstraction.addMarker(new Marker(new LatLonPoint(46.106462667,-64.812325333)));

  var text = ('<div style="display:block;width:240px;height:100px;margin:0;padding:0;line-height:1.4em;font-size:70%;color:#000"><img style="float:right;width:75px;margin:-5px 17px 0 0;border:0" src="http://www.gmcs1.com/assets/images/ui/gerard.moss.mugshot.png" alt="" title=" Gerard Moss, G Moss Consulting &#38; Sales " /><h3 style="color:#1f6102">GMCS</h3><p>77 Chappell Street</p><p>Dartmouth, NS B3A 3P7</p><p>+1-902-461-3030</p><p><a style="background:#fff;color:#1f6102" href="http://www.gmcs1.com/" title=" G Moss Consulting &#38; Sales ">www.gmcs1.com</a></p></div>').toString();
  marker.setInfoBubble(text);
  mapstraction.addMarker(marker);
  marker.openBubble();

  var foo = function() { mapstraction.removeMarker(my_marker); };
});
