/* always open links to google maps in a new window */
(function($){
	$('a img').each(function(){
		$(this).parent().addClass('noborder');
	});

	$('a[href*="maps.google"]').each(function(link){
		if(this.target=="_blank"){
			this.target="";
		}
		if(
			(this.target=="")
			&&(!this.rel||(this.rel&&this.rel.indexOf("shadowbox")<0&&this.rel.indexOf("lightroom")<0))
		){
			this.target="_blank";
			if((this.title=="")&&this.className.indexOf("tooltip")<0){this.title=this.hostname;}
		}
	});
})(jQuery);

Shadowbox.init({
	overlayOpacity:0.9
});
