// SCROLLING FRAMES

var timeout;
var y = 0;
var step = 3;

function start1(){

	if (y < 0){
		y=0;
	}
		
	document.ratepane.scroll(0,y);
	y=y + step;
	
	timeout=setTimeout("start1()",100);

}

function start2(){

	if (y >=0 ){
		document.ratepane.scroll(0,y);
		y = y - step;
	}

	timeout=setTimeout("start2()",100);
	
}

function stop1(){
	
	clearTimeout(timeout);
	
}

function top1(){

	document.ratepane.scroll(0,0);
	y=0;
	
}