


/* maps.js */

var googlemap = null;
var googlemapCenter = null;
$(document).ready(function() {
    
    $('.hotel-focus .googlemap').each(function(){
       var vars = $(this).find('.map-vars').val().split(',');
       if(vars.length >= 2){
       	 if(vars.length = 2){
       	 	vars[2] = 12;
       	 }
       	 var center = new google.maps.LatLng(parseFloat(vars[0]), parseFloat(vars[1]));
       	 var myOptions = {
       	     zoom: parseInt(parseInt(vars[2])),
       	     center: center,
       	     mapTypeId: google.maps.MapTypeId.TERRAIN
       	 };
       	 
       	 var map = new google.maps.Map(document.getElementById("googlemap"), myOptions);
       	 googlemap = map;
       	 googlemapCenter = center;
       	 
       	 var image = new google.maps.MarkerImage('/images/map-marker.png',
       	     // This marker is 41 pixels wide by 35 pixels tall.
       	     new google.maps.Size(41, 35),
       	     // The origin for this image is 0,0.
       	     new google.maps.Point(0,0),
       	     // The anchor for this image is the base of the flagpole at 0,35.
       	     new google.maps.Point(10, 33));
       	 
       	 var mapMarker = new google.maps.Marker({
       	     position: center,
       	     map: map
       	     //icon: image
       	 });
       }
    });
    
});
