function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(36.051875, -94.153862), 9);
        
        gen_markers(map);
        
       /* var map2 = new GMap2(document.getElementById("bmap"));
        map2.setCenter(new GLatLng(36.051875, -94.153862), 9);*/
      }
    }
    
var marker = new Array();
    
// Creates a marker at the given point with the given number label
function createMarker(point,text,id) {
  marker[id] = new GMarker(point);
  GEvent.addListener(marker[id], "click", function() {
	marker[id].openInfoWindowHtml(text);
  });
  GEvent.addListener(marker[id], "mouseover", function() { 
  	fade_in('adpreimg' + id);
  });
  	
  return marker[id];
}