
  var obj0,obj1,obj2,j,k,temp,featuredLisitngs,Table1;

  var i=100;
  var speed=15; 

function imgScroll() {

   obj0.style.left=i+'px';

   i--;

if(i<-k) {
   i=k;
 }
  scroller=setTimeout('imgScroll()',speed);
 }
 

 
window.onload=function() {
	obj0=document.getElementById('ticker0');
	obj2=document.getElementById('container');


	k=obj0.offsetWidth + 150;

	temp=k;
	temp2=j;
	
	obj2.className='setup'
	obj0.style.width=k+'px';

	imgScroll();


	obj2.onmouseover=function(){
	   clearTimeout(scroller);
	 }
	obj2.onmouseout=function(){
	   imgScroll();
	  }
}