$(document).ready(function(){$("ul.nav li").hover(function(){$(this).addClass("subhover")},function(){$(this).removeClass("subhover")});$(".lightbox a").lightBox();$(".show-on-map",".mappable").click(function(d){d.preventDefault();var b=$(this).parent().html();var a="<b>"+$(this).siblings(".place").text()+"</b><br/>"+$(this).siblings(".street-address").text()+"<br/>"+$(this).siblings(".phone").text();var c=new GClientGeocoder();c.getLatLng($(this).siblings(".street-address").text(),function(e){map.setCenter(e,13);var f=new GMarker(e);GEvent.addListener(f,"click",function(){f.openInfoWindowHtml(a)});map.addOverlay(f);f.openInfoWindowHtml(a)})})});