FDIH.GoogleMaps=function(){this.init()};FDIH.GoogleMaps.prototype={init:function(){this.initGoogleMaps()},initGoogleMaps:function(){$("#googlemap").overlay({mask:{color:"#000",loadSpeed:100,opacity:.8}});$("a[rel='#googlemap']").click($.proxy(this.loadGoogleMapsScript,this))},loadGoogleMapsScript:function(event){event.preventDefault();var script=document.createElement("script");script.type="text/javascript";script.src="http://maps.google.com/maps/api/js?sensor=false&callback=FDIH.GoogleMaps.Initialize";document.body.appendChild(script);$("#googlemap").data("overlay").load()}};$(function(){new FDIH.GoogleMaps});FDIH.GoogleMaps.Initialize=function(){var mapAddress=$.trim($("#map_canvas").text()),geocode=new google.maps.Geocoder;geocode.geocode({address:mapAddress},function(results,status){var location=results[0].geometry.location;if(status==google.maps.GeocoderStatus.OK){var options={zoom:15,mapTypeId:google.maps.MapTypeId.ROADMAP},map=new google.maps.Map(document.getElementById("map_canvas"),options);map.setCenter(location);var marker=new google.maps.Marker({map:map,position:location})}})}
