if (document.layers) {DOM=true}
if (document.all) {DOM=false}
if (window.navigator.userAgent.toLowerCase().match("gecko")) {DOM=true}
if(document.all && !document.getElementById){ document.getElementById = function(id){ return document.all[id] }}
Mover=function(x,y){ window['lx' + y]=x; if(typeof(window['mov' + y])!=="undefined")clearInterval(window['mov' + y]); window['mov' + y] =setInterval("Move('" + y + "')", 55); }
Move=function(y){
	window['sw' + y]+=( window['lx' + y]-window['sw' + y])/5;
	document.getElementById(y).style.width=window['sw' + y].toFixed(0)+'px';
	if(Math.round(window['sw' + y]) == window['lx' + y] ){ clearInterval(window['mov' + y]); }
} 