function initialize() 
{
    var popaLatlng = new google.maps.LatLng(41.15383, -7.60081);
    var centerLatlng = new google.maps.LatLng(41.15652, -7.59795);


    var myOptions = {
      zoom: 15,
      center: centerLatlng,
      mapTypeId: google.maps.MapTypeId.HYBRID
    }

    var map = new google.maps.Map(document.getElementById("map"), myOptions);



	
    var image = new google.maps.MarkerImage('/media/style/img/balao_mapa.png',
    // This marker is 20 pixels wide by 32 pixels tall.
    new google.maps.Size(53, 78),
    // 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,32.
    new google.maps.Point(0, 78));

    var marker = new google.maps.Marker({
	    position: popaLatlng, 
	    map: map, 
	    icon: image,
 
	});   





}


$(document).ready(function () {
	$('a#googleMaps').click(function (e) {
		e.preventDefault();
		$('#map').modal();
		initialize();
	});
});

