  	var speed = 2;
  	var iens6 = document.all || document.getElementById;
	var movedownvar;
	var moveupvar;
  
  	function movedown(id){
  		if (iens6) {
 			crossobj = document.getElementById ? document.getElementById(id) : document.all.content;
  			contentheight = crossobj.offsetHeight;
 			if (parseInt(crossobj.style.top) >= (contentheight*(-1)+120)) {
 		 	crossobj.style.top = parseInt(crossobj.style.top) - speed + 'px';
  			}
  			movedownvar = setTimeout("movedown('" + id + "')",20);
  		}
  	}
  
  	function moveup(id){
  		if (iens6) {
 			crossobj = document.getElementById ? document.getElementById(id) : document.all.content;
  			contentheight = crossobj.offsetHeight;
  			if (parseInt(crossobj.style.top ) <= 0) {
 		 	crossobj.style.top = parseInt(crossobj.style.top) + speed + 'px';
  			}
  			moveupvar = setTimeout("moveup('" + id + "')",20);
  		}
  	}

	 function stopmovedown(id){
  		if (iens6) {
			clearTimeout(movedownvar);
  		}
	}

	function stopmoveup(id){
  		if (iens6) {
			clearTimeout(moveupvar);
  		}
	}