
var pos=50;
var posw=20;

function Start() {
	newsScroll();
	wordScroll();
	//Nifty("#shortcuts h1,#longcuts h1","top medium transparent");
	//Nifty("#main h1","small transparent");
	//Nifty("#main h2","small transparent");
}
function newsScroll() {
  	if (!document.getElementById) return;
	obj=document.getElementById("newsScrollInner");
  	pos -=1;
  	if (pos < 0-obj.offsetHeight) pos=50;
  	obj.style.top=pos + 'px';
	window.setTimeout("newsScroll()",40);
}
function wordScroll() {
  	if (!document.getElementById) return;
  	objw=document.getElementById("wordScrollInner");
  	posw -=1;
  	if (posw < 0-objw.offsetHeight) posw=20;
  	objw.style.top=posw + 'px';
	window.setTimeout("wordScroll()",60);
}
window.onload = Start;