var timeInt = 1500;
var t = null;
var d = null;
function initRoll(){
	d = document.getElementById("newDeals");
	t = setInterval(rollNewDeal,timeInt);
	d.onmouseover=function(){clearInterval(t)}  
  	d.onmouseout=function(){t=setInterval(rollNewDeal,timeInt)}  
}
function rollNewDeal(){  
	var o=d.firstChild;
	d.removeChild(o);
	d.appendChild(o);
}  