
function initialize() {
  var myOptions = {
    zoom: 11,
    center: new google.maps.LatLng(academy_latitude, academy_longitude),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  var map = new google.maps.Map(document.getElementById("acmapbox"),
                                myOptions);

  var image = new google.maps.MarkerImage(template_directory+'/images/pqaflag.png',
      new google.maps.Size(20, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));
  var shadow = new google.maps.MarkerImage(template_directory+'/images/pqaflag_shadow.png',
      new google.maps.Size(37, 32),
      new google.maps.Point(0,0),
      new google.maps.Point(0, 32));
  var shape = {
      coord: [1, 1, 1, 20, 18, 20, 18 , 1],
      type: 'poly'
  };
    var myLatLng = new google.maps.LatLng(academy_latitude, academy_longitude);
    var marker = new google.maps.Marker({
        position: myLatLng,
        map: map,
        shadow: shadow,
        icon: image,
        shape: shape,
        title: 'PQA',
        zIndex: 1
    });

	


}	

jQuery(document).ready(function($){

initialize();
});

