var a
a= new Array();
//menu top
a[0]=new Image;
a[0].src="risorse/menu-top/1_about-us.gif";
a[1]=new Image;
a[1].src="risorse/menu-top/1_about-us_roll.gif";
a[2]=new Image;
a[2].src="risorse/menu-top/2_services.gif";
a[3]=new Image;
a[3].src="risorse/menu-top/2_services_roll.gif";
a[4]=new Image;
a[4].src="risorse/menu-top/3_partners.gif";
a[5]=new Image;
a[5].src="risorse/menu-top/3_partners_roll.gif";
a[6]=new Image;
a[6].src="risorse/menu-top/4_store.gif";
a[7]=new Image;
a[7].src="risorse/menu-top/4_store_roll.gif";
a[8]=new Image;
a[8].src="risorse/menu-top/5_contact.gif";
a[9]=new Image;
a[9].src="risorse/menu-top/5_contact_roll.gif";
function roll(img,nb) {
eval("img.src=a["+nb+"].src");
}
//aperture menu della'array qui sopra..
function visualizza(id){
if (document.getElementById){
if(document.getElementById(id).style.display == 'none'){
document.getElementById(id).style.display = 'block';
} else {
document.getElementById(id).style.display = 'none';
}
}
}