

//cuando paso el mouse
function m_over(element){
	document.getElementById(element).style.display="none";
	document.getElementById(element+"G").style.display="block";

	}
//cuando retiro el mouse
function m_out(element){
document.getElementById(element).style.display="block";
document.getElementById(element+"G").style.display="none";
}

//direcciones 
function topage(element){
	switch (element){
		case 1:
		location.href='design/index.html';
		break;
		case 2:
		window.location.href='contactanos.html';
		break;
		case 3:
		window.location.href='siguenos.html';
		break;
		case 4:
		window.location.href='barranquismo.html';
		break;
		case 5:
		window.location.href='rapel.html';
		break;
		case 6:
		window.location.href='escalada.html';
		break;
		case 7:
		window.location.href='travesia.html';
		break;
		case 8:
		window.location.href='extremo.html';
		break;
	
	}
	}

