function initialize() {
    var myLatlng = new google.maps.LatLng(35.493801,-97.531106);
    var myOptions = {
      zoom: 14,
      center: myLatlng,
      navigationControl: true, navigationControlOptions: { style: google.maps.NavigationControlStyle.ZOOM_PAN },
      mapTypeControl: true,mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.DROPDOWN_MENU },
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    
    var contentDiv = document.getElementById("contactInfo");
   
    var infowindow = new google.maps.InfoWindow({
    	content: contentDiv
    });
    
    var marker = new google.maps.Marker({
        position: myLatlng, 
        map: map,
        title:"Prohibition Room"
    });   
    
    infowindow.open(map,marker);
  }
  
  
$(document).ready(function() {

initialize();

var options={target:'#formResult',beforeSubmit:function(){$("#formSubmit").attr("value","Please wait...");$("#formSubmit").attr("disabled","disabled");},success:function(responseText){switch(responseText){case"success":$("#formResult").html("<strong>Your e-mail message has been sent. Thank you!</strong>");$("#formFields").hide("slide",{direction:"up"},1000);break;case"error":default:$("#formResult").html('<p class="error">There was a problem sending your e-mail. Please check if the e-mail address you entered is valid, and if you filled in all the fields. If this problem persists, please contact us using the information on the left.</p>');$("#formSubmit").attr("value","Send e-mail");$("#formSubmit").attr("disabled","");$("#formFields").effect("shake",{times:3,distance:6});break;}},url:'query.php',clearForm:false};$('#contactForm').submit(function(){$(this).ajaxSubmit(options);return false;});

});