function ready()
{
	var news = document.getElementById("headnews"); 
	if(news)
	{
		npjq.animate(news, 0);
		npjq.animate(news, 1, 1000); 
		npjq.animate(news, 0, 100); 
		npjq.animate(news, 1); 
		npjq.animate(news, undefined, 50); 
		npjq.animate(news, 0); 
		npjq.animate(news, undefined, 50); 
		npjq.animate(news, 1); 
		npjq.animate(); 
	}
}

