var my_val = 1955;
var a=0;
var b=my_val;
var speed=40; 
var scrollN;
function company_scroll()
{ 
	var div_fr = document.getElementById('div_first');
	div_fr.style.left = a + 'px';
	//alert('sdffd');
	var div_sc = document.getElementById('div_second');
	div_sc.style.left = b + 'px';
   	a--;
   	b--;
	if(a==-my_val) 
	{
   		a=my_val;
 	}
	if(b==-my_val) 
	{
   		b=my_val;
 	}
	scrollN=setTimeout('company_scroll()',speed);
	document.getElementById('container_con').onmouseover=function() 
	{
		clearTimeout(scrollN); 
	}
	document.getElementById('container_con').onmouseout=function() 
	{
	company_scroll();
	}
}
