Event.observe(window,'load',scrollHelp);
function scrollHelp(){
	var s = window.location.search.toLowerCase();
	var p = window.location.pathname.toLowerCase();
	if(p.indexOf('allpages.aspx')==-1 && 
	(s.indexOf('facing=')==-1 && p.indexOf('articles.aspx')!=-1) ||
	(s.indexOf('facing=')==-1 && p.indexOf('advertisers.aspx')!=-1)
	){
		var allLinks = document.getElementsByTagName('a');
		$A(allLinks).each(function(l){
			l.href = l.href.indexOf('facing=true')!=-1?l.href.replace(/facing\=true/gi,'facing=false'):l.href;
		});
	}
	var qp = (window.location.search).toQueryParams();
	if($('t-page-display') && (qp.artid) ){
	var t=document.createElement('span');
	var s=$('t-page-display');//.getElementsByTagName('select')[0];
	t.appendChild(document.createTextNode("Use the scroll bar at the bottom of the article to navigate"));
	s.appendChild(t);
	}
}