var obj0,obj1,obj2,j,k,temp;	
var i=0;
var speed=30; 
	
function imgScroll() {
	
	   obj0.style.left=i+'px';
	   obj1.style.left=j+'px';
	      
		   i = i-2;
		   j = j-2;
	
		if(i<-temp) 
		{
		   	i=k;
		}
		if(j<-k) 
		{
		   	j=temp;
		} 
	 scroller=setTimeout('imgScroll()',speed);
}
	
function loadMarquee() {
	   obj0=document.getElementById('ticker0');
	   obj1=document.getElementById('ticker1');
	   obj2=document.getElementById('container');
	
	   j=obj0.offsetWidth;
	   k=obj1.offsetWidth;
		
	   temp=j;
	
	   obj1.className='';
	   obj2.style.margin='0px auto';

	   obj2.className='setup' ;   
	   
	   obj0.style.width=j+'px';
	   obj1.style.width=k+'px';
		
	   imgScroll();
	
	obj2.onmouseover=function()
	{
	  	 clearTimeout(scroller);
	}
	obj2.onmouseout=function()
	{
	   	imgScroll();
	}
}
