//preload delle immagini del menuTop
i1=new Image;
i1.src='immagini/menuhome/htop_01_on.gif';

i2=new Image;
i2.src='immagini/menuhome/htop_02_on.gif';

i3=new Image;
i3.src='immagini/menuhome/htop_03_on.gif';

i4=new Image;
i4.src='immagini/menuhome/htop_04_on.gif';

//prima immagine (nel tag "img" l'attributo name="menuTop1" )
var menuTop1On = new Image();
menuTop1On.src = "immagini/menuhome/htop_01_on.gif";
var menuTop1Off = new Image();
menuTop1Off.src = "immagini/menuhome/htop_01_off.gif";

//seconda immagine (nel tag "img" l'attributo name="menuTop2" )
var menuTop2On = new Image();
menuTop2On.src = "immagini/menuhome/htop_02_on.gif";
var menuTop2Off = new Image();
menuTop2Off.src = "immagini/menuhome/htop_02_off.gif";

//terza immagine (nel tag "img" l'attributo name="menuTop3" )
var menuTop3On = new Image();
menuTop3On.src = "immagini/menuhome/htop_03_on.gif";
var menuTop3Off = new Image();
menuTop3Off.src = "immagini/menuhome/htop_03_off.gif";

//quarta immagine (nel tag "img" l'attributo name="menuTop4" )
var menuTop4On = new Image();
menuTop4On.src = "immagini/menuhome/htop_04_on.gif";
var menuTop4Off = new Image();
menuTop4Off.src = "immagini/menuhome/htop_04_off.gif";



//preload delle immagini del menuBottom
i1=new Image;
i1.src='immagini/menuhome/hbottom_01_on.gif';

i2=new Image;
i2.src='immagini/menuhome/hbottom_02_on.gif';

i3=new Image;
i3.src='immagini/menuhome/hbottom_03_on.gif';

i4=new Image;
i4.src='immagini/menuhome/hbottom_04_on.gif';

i5=new Image;
i5.src='immagini/menuhome/hbottom_05_on.gif';

i6=new Image;
i6.src='immagini/menuhome/hbottom_06_on.gif';

i7=new Image;
i7.src='immagini/menuhome/hbottom_07_on.gif';



//prima immagine (nel tag "img" l'attributo name="menuTop1" )
var menuBottom1On = new Image();
menuBottom1On.src = "immagini/menuhome/hbottom_01_on.gif";
var menuBottom1Off = new Image();
menuBottom1Off.src = "immagini/menuhome/hbottom_01_off.gif";

//seconda immagine (nel tag "img" l'attributo name="menuTop2" )
var menuBottom2On = new Image();
menuBottom2On.src = "immagini/menuhome/hbottom_02_on.gif";
var menuBottom2Off = new Image();
menuBottom2Off.src = "immagini/menuhome/hbottom_02_off.gif";

//terza immagine (nel tag "img" l'attributo name="menuTop3" )
var menuBottom3On = new Image();
menuBottom3On.src = "immagini/menuhome/hbottom_03_on.gif";
var menuBottom3Off = new Image();
menuBottom3Off.src = "immagini/menuhome/hbottom_03_off.gif";

//quarta immagine (nel tag "img" l'attributo name="menuTop4" )
var menuBottom4On = new Image();
menuBottom4On.src = "immagini/menuhome/hbottom_04_on.gif";
var menuBottom4Off = new Image();
menuBottom4Off.src = "immagini/menuhome/hbottom_04_off.gif";

//quinta immagine (nel tag "img" l'attributo name="menuTop5" )
var menuBottom5On = new Image();
menuBottom5On.src = "immagini/menuhome/hbottom_05_on.gif";
var menuBottom5Off = new Image();
menuBottom5Off.src = "immagini/menuhome/hbottom_05_off.gif";

//sesta immagine (nel tag "img" l'attributo name="menuTop6" )
var menuBottom6On = new Image();
menuBottom6On.src = "immagini/menuhome/hbottom_06_on.gif";
var menuBottom6Off = new Image();
menuBottom6Off.src = "immagini/menuhome/hbottom_06_off.gif";

//settima immagine (nel tag "img" l'attributo name="menuTop7" )
var menuBottom7On = new Image();
menuBottom7On.src = "immagini/menuhome/hbottom_07_on.gif";
var menuBottom7Off = new Image();
menuBottom7Off.src = "immagini/menuhome/hbottom_07_off.gif";




//Funzioni per lo scambio dell'immagine
function MOver(picimage)//funzione che si attiva con OnMouseOver
{
Picture_Over = eval(picimage +"On.src")
document[picimage].src = Picture_Over
}

function MOut(picimage)//funzione che si attiva con OnMouseOut
{
Picture_Out = eval(picimage +"Off.src")
document[picimage].src = Picture_Out
}

