function mover(t) {
	l=t.src.length;
	if (t.src.substr(l-5,1)=='A') return;
	e=t.src.substr(l-4,4);
	i=t.src.substr(0,l-4);
	t.src=i+"A"+e;
}

function mout(t) {
	l=t.src.length;
	if (t.src.substr(l-5,1)=='A') {
		e=t.src.substr(l-4,4);
		i=t.src.substr(0,l-5);
		t.src=i+e;
	}
}

scrollStep=1;

timerLeft=""
timerRight=""

function toLeft(id){
  document.getElementById(id).scrollLeft=0
}

function scrollDivLeft(id){
  clearTimeout(timerRight) 
  document.getElementById(id).scrollLeft-=scrollStep
  timerRight=setTimeout("scrollDivLeft('"+id+"')",10)
}

function scrollDivRight(id){
  clearTimeout(timerLeft)
  document.getElementById(id).scrollLeft+=scrollStep
  timerLeft=setTimeout("scrollDivRight('"+id+"')",10)
}

function toRight(id){
  document.getElementById(id).scrollLeft=document.getElementById(id).scrollWidth
}

function stopMe(){
  clearTimeout(timerRight) 
  clearTimeout(timerLeft)
}