function initialize() {
  var map = new GMap2(document.getElementById("map_canvas"));
    map.setUIToDefault();
   map.enableGoogleBar();
   map.disableScrollWheelZoom(); 


  map.setCenter(new GLatLng(43.50530,-79.67113),10);
  map.setMapType(G_NORMAL_MAP);
  
    // Create our "tiny" marker icon
var BIcon = new GIcon(G_DEFAULT_ICON);
BIcon.image = "http://jasperstudios.com/2011/wp-content/themes/jasper/images/jasper-map-art.png";
BIcon.shadow = "http://jasperstudios.com/2011/wp-content/themes/jasper/images/hqs.png";
BIcon.iconSize = new GSize(242, 242);
BIcon.shadowSize = new GSize(0, 0);
BIcon.iconAnchor = new GPoint(290, 115);

var MIcon = new GIcon(G_DEFAULT_ICON);
MIcon.image = "http://jasperstudios.com/2011/wp-content/themes/jasper/images/hq.png";
MIcon.shadow = "http://jasperstudios.com/2011/wp-content/themes/jasper/images/hqs.png";
MIcon.iconSize = new GSize(112, 53);
MIcon.shadowSize = new GSize(0, 0);
MIcon.iconAnchor = new GPoint(56, 24);
                
// Set up our GMarkerOptions object
markerOptions = { icon:MIcon };
markerOptions2 = { icon:BIcon };

  var point = new GLatLng(43.50530,-79.67113);
  map.addOverlay(new GMarker(point,markerOptions));
  var point2 = new GLatLng(43.50530,-79.67113);
  map.addOverlay(new GMarker(point2,markerOptions2));
 }
  
 
