$(function(){var infoWindowContent=$("#gmaps-info-window").html();$("#gmaps-info-window").remove();$("#gmaps-bubble").click(function(){var $this=$(this);var secondClick=$this.data("secondClick")||false;$(".Inner").toggleClass("Active");$this.find("span").toggleClass("Hide");if(!secondClick){var Latlng=new google.maps.LatLng(55.00265,82.94334);var Options={zoom:13,center:Latlng,mapTypeId:google.maps.MapTypeId.ROADMAP,navigationControl:false,mapTypeControl:false,streetViewControl:false};var gmap=new google.maps.Map(document.getElementById("gmap"),Options);var marker=new google.maps.Marker({map:gmap,position:Latlng});var infowindow=new google.maps.InfoWindow({content:infoWindowContent});google.maps.event.addListener(marker,"click",function(){infowindow.open(gmap,marker)});$(this).data("secondClick",true)}$("#gmap").toggleClass("Visible").toggleClass("Active",DEFAULT_ANIMATION_TIME);return false})});
