// JavaScript Document

allMenus	= document.getElementById('menuCell').getElementsByTagName('div');
navString	= navigator.userAgent.toUpperCase();
for(amief=0;amief<allMenus.length;amief++){
	cMenu	= allMenus[amief];
	if(navString.indexOf('MSIE 7') > 1 || navString.indexOf('MSIE 6') > 1){
		cMenu.style.display	= 'inline';
	}
	
	cMenu.onmouseover = function(){
		this.className	= 'menuElement_hover';
	}
	
	cMenu.onmouseout = function (){
		this.className	= 'menuElement';
	}
	
}

if(document.getElementById('serviciosContenedor')){
	serviciosContenedori	= document.getElementById('serviciosContenedor');
	allTds					= serviciosContenedori.getElementsByTagName('td');
	for(sctd=0;sctd<allTds.length;sctd++){
		curSctd	= allTds[sctd];
		curSctd.onmouseover = function(){
			this.style.background	= 'transparent url(' + siteRoot + 'media/serviciosContenedor-elback.png) no-repeat top center';
		}
		curSctd.onmouseout = function(){
			this.style.background	= 'none';
		}
		curSctd.onclick = function(){
			window.location = this.getElementsByTagName('a')[0].href;
		}
	}
}

if(document.getElementById('paquetesHospedajeWeb')){
	hospedaje	= document.getElementById('paquetesHospedajeWeb');
	var	originalHospedajeHeight	= hospedaje.scrollHeight;
	hospedaje.style.visibility	= 'hidden';
	hospedaje.style.display		= 'none';
	hospedaje.style.height		= '0px';
}

if(document.getElementById('contenedorFormaRapida')){
	contenedor	= document.getElementById('contenedorFormaRapida');
	mensaje		= document.getElementById('contenedorNoScript');
	forma		= document.getElementById('formaPrincipal');
	
	contenedor.style.visibility			= 'visible';
	contenedor.style.display			= 'block';
	contenedor.style.height				= 'auto';
	
	mensaje.style.visibility			= 'hidden';
	mensaje.style.display				= 'none';
	mensaje.style.height				= '0px';
	
	forma.action						= 'enviar-contacto.gr';
	document.getElementById('cfNombre').name	= 'cfNombre';
	document.getElementById('cfCorr').name		= 'cfCorr';
	document.getElementById('cfTel').name		= 'cfTel';
	document.getElementById('cfCom').name		= 'cfCom';
	
}
if(document.getElementById('repojaja')){
	enlace								= document.createElement('a');
	enlace.href							= 'mailto:' + 'info' + '@' + 'gururojo.com';
	enlace.innerHTML					= 'info@gururojo.com';
	document.getElementById('repojaja').appendChild(enlace);
}


if(document.getElementById('twr')){
	if(navString.indexOf('MSIE 7') > 1 || navString.indexOf('MSIE 6') > 1){
		objetivos	= document.body.getElementsByTagName('div');
		for(rto=0;rto<objetivos.length;rto++){
			curRto	= objetivos[rto];
			if(curRto.className == 'RealinearTextosWeb'){
				curRto.style.cssText	= 'TEXT-ALIGN: left; PADDING-LEFT: 5px';
			}
		}
	}
}

if(document.getElementById('productosDisenoImpresion')){
	bloquesExtendidos	= document.getElementById('productosDisenoImpresion').getElementsByTagName('span');
	for(bdsh=0;bdsh<bloquesExtendidos.length;bdsh++){

		curBloque	= bloquesExtendidos[bdsh];
		
		if(curBloque.className == 'contenidoDetallado'){
			var cbgid							= 'bloqueExtendido_' + bdsh;
			curBloque.id					= cbgid;
			curBloque.style.display			= 'none';
			
			cbEnlace						= document.createElement('a');
			cbEnlace.href					= 'javascript:;';
			cbEnlace.innerHTML				= 'Ver más...';
			cbEnlace.lang					= cbgid
			cbEnlace.onclick				= function(){
				this.style.display	= 'none';
				document.getElementById(this.lang).style.display	= 'inline';
			}
			

			curBloque.parentNode.appendChild(cbEnlace);

		}
	}
}

