// JavaScript Document

function nav() {
	
	
	
var actual_body = document.getElementById("refbody");
var actual_page = actual_body.getAttribute("titleref");
var queImagen = "url(/fotos/00-pic_show_0" + actual_page + ".jpg)"
var fondo = document.getElementById("nav2");



fondo.style.backgroundImage = queImagen ;



 
var linkcatch1 = document.getElementById ("nav2-1-0");
var linkcatch2 = document.getElementById ("nav2-1-1");
var linkcatch3 = document.getElementById ("nav2-1-2");
var linkcatch4 = document.getElementById ("nav2-1-3");
var linkcatch5 = document.getElementById ("nav2-1-4");

var linkcatch6 = document.getElementById ("nav2-2-0");
var linkcatch7 = document.getElementById ("nav2-2-1");
var linkcatch8 = document.getElementById ("nav2-2-2");

var linkcatch9 = document.getElementById ("nav2-3-0");

var linkcatch10 = document.getElementById ("nav2-4-0");


linkcatch1.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_01.jpg)';
}

linkcatch2.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_02.jpg)';
}

linkcatch3.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_03.jpg)';
}

linkcatch4.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_04.jpg)';
}

linkcatch5.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_05.jpg)';
}


linkcatch6.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_06.jpg)';
}

linkcatch7.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_07.jpg)';
}

linkcatch8.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_08.jpg)';
}


linkcatch9.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_09.jpg)';
}


linkcatch10.onmouseover  = function () {
	fondo.style.backgroundImage = 'url(fotos/00-pic_show_010.jpg)';
}


///////MOUSEOUT


	


linkcatch1.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}

linkcatch2.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
	
linkcatch3.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch4.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch5.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch6.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch7.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch8.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch9.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}
linkcatch10.onmouseout = function () {
		fondo.style.backgroundImage = queImagen;
}

	
}
addLoadEvent(nav);
