function mailAS()
{
var usuario = "info"
var dominio = "parqueycesped.com.ar"
document.write("<a href='mailto:" + usuario + "@" + dominio + "'>" + usuario + "@" + dominio + "</a>")
}
window.addEvent('domready', function(){
		
			$$('#main a img').each(function(img, i) {
				var a = img.getParent();
				new ReMooz(img, {
					url: a.href,
					positionToCenter: true				
				}).bindToElement();
			});

		});

		function cambiar(esto)
{
	vista=document.getElementById(esto).style.display;
	if (vista=='none')
		vista='block';
	else
		vista='none';

	document.getElementById(esto).style.display = vista;
}

