var a24_scroll_list = document.getElementById('objects-list');
var a24_scroll_ctrl = null;

try{
	a24_scroll_list.onmouseout = function(){startScroll()}
	a24_scroll_list.onmouseover = function(){stopScroll()}
}catch(e){}

startScroll();

function startScroll(){
	a24_scroll_ctrl = setInterval(function(){
		scroll(a24_scroll_list);
	},10000);
}

function stopScroll(){
	clearInterval(a24_scroll_ctrl);
}

function scroll(list){
	try{
		if(list.childNodes.length > 0){
			var el = list.firstChild;
			list.appendChild(el.parentNode.removeChild(el));
		}
	}catch(e){}
}
