

 function initialize() {
    var latlng = new google.maps.LatLng(-34.397, 150.644);
    var myOptions = {
      zoom: 8,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map($("#map_canvas"), myOptions);

  }




function submit_contact_form(){
  $.ajax({
  type: 'POST',
  url: '/send_mail.php',
  data: $('#contact_form').serialize(),
  success: function(data){alert("Message Successfully Sent")},
});
	
}









