/*
   ****************************************
   |					  |
   |  Author  : Nunziante Contieri 	  |
   |  WebSite : www.globemaster.cjb.net   |
   |  E-Mail  : globemaster1@yahoo.it	  |
   |					  |
   ****************************************

   Please do not delete this header!
   This script may be used freely as long as this header is intact! Thank you.

   The Author cannot be held responsible for any unwanted effects due to the    
   usage of this JavaScript or any derivative.  No warrantees for usability    
   for any specific application are given or implied. 
*/

var id;
ie4=(document.all)?true:false;
ns6=(document.getElementById)?true:false;
var x1 = -157;
var x2 = 33;

function Menu(){
	if(ie4){ 
		document.all["barra2"].style.pixelLeft = x1;
		document.all["countdown"].style.pixelTop = x2;
		id = window.setInterval ("Muovi()",20);
	}
	else if (ns6) {
		document.getElementById("barra2").style.left = x1;
		document.getElementById("countdown").style.top = x2;
		id = window.setInterval ("Muovi2()",20);
	}
}

function Muovi(){
document.all.barra2.style.pixelLeft += 10;
document.all.countdown.style.pixelTop -= 1;
	if (document.all.barra2.style.pixelLeft >= 163) {
		document.all.barra2.style.pixelLeft = 163;
		document.all.countdown.style.pixelTop = 0;
                window.clearInterval (id) ;
	}
}

function Muovi2(){
x1 = x1 + 10;
x2 = x2 - 1;
document.getElementById("barra2").style.left = x1;
document.getElementById("countdown").style.top = x2;
	if (x1 > 163) {
		document.getElementById("barra2").style.left = 163;
		document.getElementById("countdown").style.top = 0;
		window.clearInterval(id);
	}
}