$(document).ready(function() {
	if ((typeof(gmap) != "undefined") && gmap)
	{
		var map;					
		var image = window.location.protocol + '//' + window.location.host + '/_images/google-icon.png';
	
		var myOptions = {
			zoom: 16,				
			mapTypeId: google.maps.MapTypeId.ROADMAP
		};
		map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
		map.setCenter(gps);
	
		var infowindow = new google.maps.InfoWindow({
			content: '<div id="content">'+
			'<div id="siteNotice">' + note + '</div>'+        
			'</div>'
		});
							
		var marker = new google.maps.Marker({
			position: gps,
			map: map,
			draggable: false,
			animation: google.maps.Animation.DROP,
			icon: image,
			title: 'Click me!'				
		});
							
		google.maps.event.addListener(marker, 'click', function() {
			infowindow.open(map, marker);
		});
	}
	
});
