function redir(idx) {
if(window.mainbar.selectedIndex != 0) {
switch(idx) {
case 1:
window.location.href="prodotti.htm";
break;
case 2:
window.location.href="tour.htm";
break;
case 3:
window.location.href="contatti.htm";
break;
case 4:
window.location.href="webcam.htm";
break;
case 5:
window.location.href="engtour.htm";
break;

}
}
}


function premain() {
// new object

things = new Array();
things[0] = "images/bar/ovr/roses_01.gif";
things[0] = "images/bar/ovr/roses_02.gif";
things[0] = "images/bar/ovr/roses_03.gif";
things[0] = "images/bar/ovr/roses_04.gif";
things[0] = "images/bar/ovr/roses_05.gif";

imgthings = new Array();

for(id=0; id<5; id++) {
	imgthings[id] = new Image();
	imgthings[id].src = things[id];
}
}

