if (document.images) {
home_on = new Image();
home_on.src = "img/home_on.gif";
home_off = new Image();
home_off.src = "img/home_off.gif";
biografia_on = new Image();
biografia_on.src = "img/biografia_on.gif";
biografia_off = new Image();
biografia_off.src = "img/biografia_off.gif";
eventi_on = new Image();
eventi_on.src = "img/eventi_on.gif";
eventi_off = new Image();
eventi_off.src = "img/eventi_off.gif";
pubblicazioni_on = new Image();
pubblicazioni_on.src = "img/pubblicazioni_on.gif";
pubblicazioni_off = new Image();
pubblicazioni_off.src = "img/pubblicazioni_off.gif";
portfolio_on = new Image();
portfolio_on.src = "img/portfolio_on.gif";
portfolio_off = new Image();
portfolio_off.src = "img/portfolio_off.gif";

}
function changeImage(imgNam, newImg) {
	if (document.images)
		document[imgNam].src = newImg;
}
function rollOver(name, status) {
    changeImage(name, eval(name + '_' + status + '.src'));
}


function targetBlank (url) {
  blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}