		scroll('WhatsOnGuide',-1,-8960,1);
		
function fade() {
	noScroll();
	setTimeout("check()", 103);
	//setTimeout("alert('103')", 103);
	
	setTimeout("scroll('WhatsOnGuide',-1,-8960,1)", 105);
	//setTimeout("alert('105')", 105);
	//alert('');
}

function unfade() {
	noScroll();
	setTimeout("check()", 103);
	//setTimeout("alert('103')", 103);
	
	setTimeout("scroll('WhatsOnGuide',1,0)", 105);
	//setTimeout("alert('105')", 105);
	//alert('');
}
function scroll(obj,step,pos) {
	//alert(pos);
	lyr1Obj = eval(doc + '[obj]' + sty);
	var x_pos1 = parseInt(lyr1Obj.left);
	//alert('x_pos1 : ' + x_pos1 + ' pos : ' + pos + ' step : ' + step);
	if (step>0) {
		if(x_pos1+step < pos) {
			//alert('1');	
			lyr1Obj.left = x_pos1+step;
			if (uloop) {dloop=false;setTimeout("scroll('"+obj+"',"+step+","+pos+")", 100);}
		}else{
			//alert('2');
			lyr1Obj.left = pos;
			fade();
			
		}
	}
	if (step<0) {
		if(x_pos1+step > pos) {
			//alert('3');
			lyr1Obj.left = x_pos1+step;
			if (uloop) {dloop=false;setTimeout("scroll('"+obj+"',"+step+","+pos+")", 100);}
		}else{
			
			lyr1Obj.left = pos;
			unfade();
			
		}
	}
}
                
<!--
function MM_openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}

function doit(){
if (!window.print){
alert("You need NS4.x to use this print button!")
return
}
window.print()
}
//-->
