SiteFeatures = Class.create( {
	initialize: function() 
	{
 		$$("a.mapa_local").each(
			function ( link ){link.observe( "click" , this.openMap.bind(this) );}
		 , this );
	},

	mostrar_fundo:function() {
		if (!this.fundo)
		{
			$$("body").first().insert( '<div id="fundo_escuro"></div>' );
			this.fundo = $("fundo_escuro");
		}
		this.fundo.setStyle({"display":"block"})
	},

	fechar_fundo: function() {
		this.fundo.setStyle({"display":"none"})
	},

	openMap:function() {
			this.mostrar_fundo()
			if( !this.googleMap )
			{
				$$("body").first().insert( '<div class="popup" id="MapaGoogle"><div class="janela"><div id="fecharMapa"><a href="home" id="fecharMpa_link">X</a></div><iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.google.com.br/maps?f=q&amp;source=s_q&amp;hl=pt-BR&amp;geocode=&amp;q=Rua+Nilza+Medeiros+Martins,+57&amp;sll=-14.179186,-50.449219&amp;sspn=96.70607,186.152344&amp;ie=UTF8&amp;hq=&amp;hnear=R.+Nilza+Medeiros+Martins,+57+-+Vila+S%C3%B4nia,+S%C3%A3o+Paulo+-+SP,+05628-010&amp;ll=-23.590576,-46.723909&amp;spn=0.037756,0.054846&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://www.google.com.br/maps?f=q&amp;source=embed&amp;hl=pt-BR&amp;geocode=&amp;q=Rua+Nilza+Medeiros+Martins,+57&amp;sll=-14.179186,-50.449219&amp;sspn=96.70607,186.152344&amp;ie=UTF8&amp;hq=&amp;hnear=R.+Nilza+Medeiros+Martins,+57+-+Vila+S%C3%B4nia,+S%C3%A3o+Paulo+-+SP,+05628-010&amp;ll=-23.590576,-46.723909&amp;spn=0.037756,0.054846&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">Exibir mapa ampliado</a></small></div></div>');
				this.googleMap = $("MapaGoogle");
				$("fecharMpa_link").observe( "click" , this.closeMap.bind(this) );
			}
			this.googleMap.setStyle( {"display":"block"} );
		},
	closeMap: function() {
			this.googleMap.setStyle( {"display":"none"} );
			this.fechar_fundo();
		}
});
var site;
document.observe("dom:loaded",  function () {
	site = new SiteFeatures()
});

