//Rollover de texto que permite mostrar un imagen diferente en una pòsición fija del sitio
//para añadir uno nuevo necesitamos seguir los siguientes pasos:
//1-añadir el siguiente código  en este mismo fichero.

//alt0 = new Image();
//alt0.src = "imagenes/casa01.jpg";

//luego
//graphic1= new Image();
//graphic1.src = "imagenes/nav_01.jpg";
//graphic1on = new Image();
//graphic1on.src = "imagenes/nav_roll_01.jpg";

//modificando el 0 por el número consecutivo al último que tengamos.

//2-En el fichero html debermos añadie las siguientes líneas:
//<a href="casa.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image8','','images/nav_roll_01.jpg',1)"><img name="Image8" border="0" src="imagenes/nav_01.jpg" width="185" height="22" alt="Casa natal de Goya"></a>
//y la imagen que queremos que sea fija tendrá un id específico(im)-><img id="im" src="imagenes/casa01.jpg" width="185" height="81" NAME="global">

{
alt0 = new Image();
alt0.src = "imagenes/spacer.gif";
 
alt1 = new Image();
alt1.src = "imagenes/cajas01.jpg";

alt2 = new Image();
alt2.src = "imagenes/modulos.jpg";

alt3 = new Image();
alt3.src = "imagenes/urnas.jpg";

alt4 = new Image();
alt4.src = "imagenes/maletines.jpg";

alt5 = new Image();
alt5.src = "imagenes/extendedores.jpg";

alt6 = new Image();
alt6.src = "imagenes/muebles.jpg";

alt7 = new Image();
alt7.src = "imagenes/otros.jpg";

alt8 = new Image();
alt8.src = "imagenes/cajas03.jpg";

alt9 = new Image();
alt9.src = "imagenes/cajas04.jpg";

alt10 = new Image();
alt10.src = "imagenes/cajas05.jpg";

alt11 = new Image();
alt11.src = "imagenes/cajas06.jpg";

alt12 = new Image();
alt12.src = "imagenes/cajas07.jpg";

alt13 = new Image();
alt13.src = "imagenes/cajas08.jpg";

alt14 = new Image();
alt14.src = "imagenes/cajas09.jpg";

alt15 = new Image();
alt15.src = "imagenes/cajas10.jpg";

alt16 = new Image();
alt16.src = "imagenes/feria_2005.gif";

alt17 = new Image();
alt17.src = "imagenes/senderos02.jpg";

alt18 = new Image();
alt18.src = "imagenes/servicios02.jpg";

alt19 = new Image();
alt19.src = "imagenes/localizacion02.jpg";

alt20 = new Image();
alt20.src = "imagenes/geniusloci01.jpg";

alt21 = new Image();
alt21.src = "imagenes/organizadores.gif";

alt22 = new Image();
alt22.src = "imagenes/foto_alfileres.jpg";

alt23 = new Image();
alt23.src = "imagenes/material.jpg";

alt24 = new Image();
alt24.src = "imagenes/blanco.jpg";

alt25 = new Image();
alt25.src = "imagenes/pinzas.jpg";

alt26 = new Image();
alt26.src = "imagenes/papel.jpg";

alt27 = new Image();
alt27.src = "imagenes/triangulos.jpg";

alt28 = new Image();
alt28.src = "imagenes/capsula.jpg";

alt29 = new Image();
alt29.src = "imagenes/cajas2.jpg";

alt30 = new Image();
alt30.src = "imagenes/modulo.jpg";

alt31 = new Image();
alt31.src = "imagenes/vitrina.jpg";

alt32 = new Image();
alt32.src = "imagenes/mueble.jpg";


graphic1= new Image();
graphic1.src = "imagenes/nav01.gif";
graphic1on = new Image();
graphic1on.src = "imagenes/nav_roll01.gif";

graphic2= new Image();
graphic2.src = "imagenes/nav02.gif";
graphic2on = new Image();
graphic2on.src = "imagenes/nav_roll02.gif";

graphic3= new Image();
graphic3.src = "imagenes/nav03.gif";
graphic3on = new Image();
graphic3on.src = "imagenes/nav_roll03.gif";

graphic4= new Image();
graphic4.src = "imagenes/nav04.gif";
graphic4on = new Image();
graphic4on.src = "imagenes/nav_roll04.gif";

graphic5= new Image();
graphic5.src = "imagenes/nav05.gif";
graphic5on = new Image();
graphic5on.src = "imagenes/nav_roll05.gif";

graphic6= new Image();
graphic6.src = "imagenes/nav06.gif";
graphic6on = new Image();
graphic6on.src = "imagenes/nav_roll06.gif";

graphic7= new Image();
graphic7.src = "imagenes/nav07.gif";
graphic7on = new Image();
graphic7on.src = "imagenes/nav_roll07.gif";

graphic8= new Image();
graphic8.src = "imagenes/nav_08.jpg";
graphic8on = new Image();
graphic8on.src = "imagenes/nav_roll_08.jpg";

graphic9= new Image();
graphic9.src = "imagenes/nav_09.jpg";
graphic9on = new Image();
graphic9on.src = "imagenes/nav_roll_09.jpg";

graphic10= new Image();
graphic10.src = "imagenes/nav_10.jpg";
graphic10on = new Image();
graphic10on.src = "imagenes/nav_roll_10.jpg";

graphic11= new Image();
graphic11.src = "imagenes/nav001.gif";
graphic11on = new Image();
graphic11on.src = "imagenes/nav_roll001.gif";

graphic12= new Image();
graphic12.src = "imagenes/nav002.gif";
graphic12on = new Image();
graphic12on.src = "imagenes/nav_roll002.gif";

graphic13= new Image();
graphic13.src = "imagenes/nav003.gif";
graphic13on = new Image();
graphic13on.src = "imagenes/nav_roll003.gif";

graphic14= new Image();
graphic14.src = "imagenes/nav004.gif";
graphic14on = new Image();
graphic14on.src = "imagenes/nav_roll004.gif";


}
function imageChange(imageID,imageName,imageID2,imageName2) {
{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}


}
//FIN ROLLOVER
