var hoverBgColor = "yellow";
var hoverColor   = "black";

function hover(layer) {

  var link, str;

  link = layer.document.links[0];
  str = '<a href="' + link.href + '"';
  if (link.target)
    str += ' target= "' + link.target + '"'
  str += '><font color="' + hoverColor + '">' + link.text + '</font>';

  layer.hoverLayer = new Layer(layer.clip.width, layer);
  layer.hoverLayer.document.open("text/html", "replace");
  layer.hoverLayer.document.write(str);
  layer.hoverLayer.document.close();
  layer.hoverLayer.bgColor = hoverBgColor;

  layer.hoverLayer.visibility =  "show";

  layer.onMouseOver = hoverOn;
  layer.onMouseOut  = hoverOff;
}

function hoverOn() {

  this.hoverLayer.visibility = "show";
}

function hoverOff() {

  this.hoverLayer.visibility = "hide";
}



function saluta(){
	var oggi=new Date();
	var ora=oggi.getHours();
	if(ora>1 && ora<=5)document.write("Buona notte..."+'<br>');
	if(ora>5 && ora<=11)document.write("Buon giorno..."+'<br>');
	if(ora>11 && ora<=16)document.write("Buon pomeriggio..."+'<br>');
	if(ora>16 && ora<=21)document.write("Buona sera..."+'<br>');
	if(ora>21 && ora<=1)document.write("Buona notte..."+'<br>');
	
};	



// --------------- Ultimo aggiornamento -------------------------

weblink=document.lastModified;
	if (navigator.appName == "Microsoft Internet Explorer") {
		mese = weblink.substring(0,2)
		giorno = weblink.substring(3,5)
		anno = weblink.substring(6,10)
		ore = weblink.substring(11,16)
}

// --------------- Fine -----------------------------------------





