/* Initialise scroller when window loads */window.onload = function(){	// check for DOM	if(!document.getElementById || !document.createTextNode){return;}	
	// defined in domnews.js
	initDOMnews();
	
	// defined in dropdown.js
	preloadImages();
	
	// Check for IE (sfHover defined in dropdown.js)
	if (window.attachEvent) window.attachEvent("onload", sfHover);}
/* stop scroller when window is closed */window.onunload = function(){	clearInterval(0);}
