  	var speed = 5;
  	var iens6 = document.all || document.getElementById;
  
  	function movedown(id){
  		if (iens6) {
 			crossobj = document.getElementById ? document.getElementById(id) : document.all.content;
  			contentheight = crossobj.offsetHeight;
 			if (parseInt(crossobj.style.top) >= (contentheight*(-1)+ 78)) {
 		 	crossobj.style.top = parseInt(crossobj.style.top) - speed + 'px';
  			}
  			movedownvar = setTimeout("movedown('" + id + "')",20);
  		}
  	}

  	function movedown2(id){
  		if (iens6) {
 			crossobj = document.getElementById ? document.getElementById(id) : document.all.content;
  			contentheight = crossobj.offsetHeight;
 			if (parseInt(crossobj.style.top) >= (contentheight*(-1)+ 332)) {
 		 	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);
  		}
  	}