var SERVICIOS = {
	

init: function(){
	
		document.getElementById('capaOpaca2').style.width = parseInt(document.documentElement.clientWidth) + 'px';
		document.getElementById('capaOpaca2').style.height = parseInt(document.documentElement.scrollHeight) + 'px';
		/*Hack para que se vea el PNG en IE6*/
		if (navigator.appVersion.indexOf('MSIE 6.0') != -1) {							
			document.getElementById('capaOpaca2').style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' + document.getElementById('capaOpaca2').currentStyle.backgroundImage.split('"')[1] + '", sizingMethod="scale")';
			document.getElementById('capaOpaca2').style.backgroundImage = 'url("")';
		}
		
		var capaVelo1 = document.getElementById('visita1').parentNode;
		capaVelo1.onclick = function(){
			document.getElementById('capaOpaca2').style.display = 'block';
			document.getElementById('capaContenedora2').style.display = 'block';
			document.getElementById('capaContenidoBlanca2').style.width = '960px';
			document.getElementById('capaContenidoBlanca2').style.height = '530px';
			document.getElementById('cerrarflash').style.left = '954px';
			document.getElementById('cerrarflash').style.top = '-14px';			
			document.getElementById('iframe1').style.display = 'block';
			document.getElementById('iframe2').style.display = 'none';
			
			if(document.getElementById('mpl')){
				document.getElementById('mpl').style.visibility = 'hidden';
			}
			
//			document.getElementsByTagName('body')[0].className = 'alto';
		}
		var capaVelo2 = document.getElementById('visita2').parentNode;
		capaVelo2.onclick = function(){
			document.getElementById('capaOpaca2').style.display = 'block';
			document.getElementById('capaContenedora2').style.display = 'block';
			document.getElementById('capaContenidoBlanca2').style.width = '800px';
			document.getElementById('capaContenidoBlanca2').style.height = '550px';
			document.getElementById('cerrarflash').style.left = '794px';
			document.getElementById('cerrarflash').style.top = '-14px';
			document.getElementById('iframe1').style.display = 'none';
			document.getElementById('iframe2').style.display = 'block';
			
			if(document.getElementById('mpl')){
				document.getElementById('mpl').style.visibility = 'hidden';
			}
			
//			document.getElementsByTagName('body')[0].className = 'alto';
		}
		var cerrarCapaVelo = document.getElementById('cerrarflash');
		cerrarCapaVelo.onclick = function(){
			document.getElementById('capaOpaca2').style.display = 'none';
			document.getElementById('capaContenedora2').style.display = 'none';
			if(document.getElementById('mpl')){
				document.getElementById('mpl').style.visibility = 'visible';
			}
//			document.getElementsByTagName('body')[0].className = '';
			return false;
		}
	}
}



// aņadido de eventos realizado como en http://simon.incutio.com/archive/2004/05/26/addLoadEvent

function addLoadEvent(fn) {
	var old = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = fn;
	} else {
		window.onload = function() {
			old();
			fn();
		}
	}
}


addLoadEvent(function() {
	SERVICIOS.init();
});

