block_blu = new Image(18, 13)
block_blu.src = "/images/block_blu.gif"

block_red = new Image(18, 13)
block_red.src = "/images/block_red.gif"

homepage = new Image(70, 38)
homepage.src = "/images/homepage.gif"

laclinica = new Image(70, 38)
laclinica.src = "/images/laclinica.gif"

inostrireparti = new Image(70, 38)
inostrireparti.src = "/images/inostrireparti.gif"

inostriservizi = new Image(70, 38)
inostriservizi.src = "/images/inostriservizi.gif"

ambulatori = new Image(70, 38)
ambulatori.src = "/images/ambulatori.gif"

prenotare = new Image(70, 38)
prenotare.src = "/images/prenotare.gif"

comecontattarci = new Image(70, 38)
comecontattarci.src = "/images/comecontattarci.gif"

comeraggiungerci = new Image(70, 38)
comeraggiungerci.src = "/images/comeraggiungerci.gif"

homepage_over = new Image(70, 38)
homepage_over.src = "/images/homepage_over.gif"

laclinica_over = new Image(70, 38)
laclinica_over.src = "/images/laclinica_over.gif"

inostrireparti_over = new Image(70, 38)
inostrireparti_over.src = "/images/inostrireparti_over.gif"

inostriservizi_over = new Image(70, 38)
inostriservizi_over.src = "/images/inostriservizi_over.gif"

ambulatori_over = new Image(70, 38)
ambulatori_over.src = "/images/ambulatori_over.gif"

prenotare_over = new Image(70, 38)
prenotare_over.src = "/images/prenotare_over.gif"

comecontattarci_over = new Image(70, 38)
comecontattarci_over.src = "/images/comecontattarci_over.gif"

comeraggiungerci_over = new Image(70, 38)
comeraggiungerci_over.src = "/images/comeraggiungerci_over.gif"

var rollimage;

function rollover(name) {
	rollimage = document.images[name].src;
	document.images[name].src = eval(name + "_over.src");
}

function rollout(name) {
	document.images[name].src = rollimage;
}

function blockover(name) {
	document.images[name].src = block_red.src;
}

function blockout(name) {
	document.images[name].src = block_blu.src;
}


