function rollover(nombre1,nombre2)
{
document.getElementById(nombre1).src = nombre2;
}

function navega(init) {
	
	new Effect.BlindUp('vertical','slide',{duration: 0.3});
	setTimeout(function() { navegar(init); },1400);
	
}
function navegar(init) {
	
	switch(init) {
	
		case 'home':
			url = 'inc_home.html';
		
		break;
		case 'nosotros':
			url = 'inc_nosotros.html';
		
		break;
		case 'shop':
			url = 'shop.php?a=home';			
			window.location = url;
			return;
		
		break;
		case 'contacto':
			url = 'inc_contact.html';
		
		break;
		case 'documentos':
			url = 'inc_docs.html';
		
		break;
		case 'faq':
			url = 'inc_faq.html';
		break;	
		
	}	
	
	pageTracker._trackPageview(url);
	
	var myAjax = new Ajax.Request(url, {
		method:'get',		
		onComplete:function(transport) {
			var response = transport.responseText;
			$('contenidopeich').innerHTML = (response);
			
			new Effect.SlideDown('vertical',{duration: 0.8});
		}				 
	});	
}


/*sECCION FAQ*/

function showArea(init) {
	
	if(!$('space'+init).visible()) {
		for(i=1;i<5;i++) {		
			if($('space'+i).visible()) {
				new Effect.BlindUp('space'+i,'slide',{duration: 0.2});
			}		
		}	
		
		new Effect.SlideDown('space'+init,{duration: 0.9});
	}
	
}