  		var iens6, ns4, crossObj, contentHeight, moveDownVar, moveUpVar, speed, scrollbar, totalScrollbar;
			
  		window.onload=function(){
  		startList();
  		iens6 = (document.all || document.getElementById);
  		
  		if (iens6) {
				crossObj = (document.getElementById ? document.getElementById("rightContent") : document.all.content);
				contentHeight = crossObj.offsetHeight
			} else if (ns4) {
				crossObj = document.nscontainer.document.nscontent
				contentHeight = crossObj.clip.height
			}	
			crossObj.style.top = "0px";			
			speed = 5;
			totalScrollbar = document.getElementById("totalScrollbar");
			scrollbar = document.getElementById("scrollbar");
			totalScrollbar.style.height = 320 +'px';
			scrollbar.style.height = (parseInt(totalScrollbar.style.height) / 10) +'px' ;
			scrollbar.style.top = '0px';
		}
		
		function moveUp() {			
			if(iens6 && parseInt(crossObj.style.top) < 0) {
				crossObj.style.top = (parseInt(crossObj.style.top) + speed) + 'px';
				updateScrollBar(parseInt(crossObj.style.top)*(-1));
				moveUpVar=setTimeout("moveUp()",1);
			}
		}
		
		function moveDown(){		
			if(iens6 && parseInt(crossObj.style.top) > (contentHeight*(-1))) {	
				crossObj.style.top = (parseInt(crossObj.style.top) - speed) + 'px';
				if((parseInt(scrollbar.style.top) + parseInt(scrollbar.style.height)) < parseInt(totalScrollbar.style.height)) {
					updateScrollBar(parseInt(crossObj.style.top)*(-1));
					moveDownVar=setTimeout("moveDown()",1);
				} else {
					scrollbar.style.top = '288px';
				}
			}
		}
		
		function updateScrollBar(pixelOffset) {
			scrollbar.style.top = ((pixelOffset/contentHeight)*320) +'px';
		}