<!--
var nL = -390;  // aumentare questo valore fino a che non sporge solo una piccola parte dell'immagine
var mS = 20;  // questa è la velocità di apertura e chiusura (norm 50)
var cX = nL;
var sT1;
var sT2;
var ie = 0;
var ns = 0;
if (parseInt(navigator.appVersion) >= 4) {
  ns = (navigator.appName.indexOf("Netscape") != -1) ? true : false;
  ie = (navigator.appName.indexOf("Microsoft") != -1) ? true : false;
}
if(ie || ns){
  document.write('<style type="text\/css">\n');
  document.write('#x21 { position: absolute; top: 10px; left: '+nL+'px; margin-top: 0px; margin-left: 0px; }\n');
  document.write('<\/style>\n');
}  
function sx1(){
  if(window.sT2)
    clearTimeout(sT2);
  if(cX < 0){
    cX += mS;
    if(cX > 0)
      cX = 0;
    if(ie)
      x21.style.left = cX+"px";
    if(ns)
      document.layers["x21"].left = cX;
    sT1 = setTimeout("sx1()",25);
  } 
  else if(window.sT1)
    clearTimeout(sT1);
}
function tu9(){
  if(window.sT1)
    clearTimeout(sT1);
  if(cX > nL){
    cX -= mS;
    if(cX < nL)
      cX = nL;
    if(ie)
      x21.style.left = cX+"px";
    if(ns)
      document.layers["x21"].left = cX;
    sT2 = setTimeout("tu9()",25);
  } 
  else if(window.sT2)
    clearTimeout(sT2);
}
if(ie || ns)
  document.write('<div id="x21"><a href="settimana.jpg" target="_new" onMouseOver="sx1()" onMouseOut="tu9()"><img src="tsettimana.jpg" border=0><\/a><\/div>\n');
-->