/******************************************************************

					S C R O L L O V E R S
					---------------------
			 Written by Steffan Luczyn - July 2007
					 www.scrollovers.com	
	
		May be used for personal and business use, but may
		  never be sold or used in a product that is not 
				   free without my consent.

*******************************************************************/

		var t;
function top() {
  if (document.body.scrollTop!=0 || document.documentElement.scrollTop!=0){
    window.scrollBy(0,-40);
    t=setTimeout('top()',10);
  }
  else clearTimeout(t);
}