$(document).ready(function () {stop_start_clip('slideCont')});

var minuterie;

function clip() 
 { 	
 // width of the banner container 	
 var contWidth = 750; 	
 // height of the banner container 	
 var contHeight = 100;  	
 var id1 = document.getElementById('slideA'); 	
 var id2 = document.getElementById('slideB');  
 id1.style.left = parseInt(id1.style.left)-1 + 'px';  
 document.getElementById('slideCont').style.width = contWidth + "px"; 	
 document.getElementById('slideCont').style.clip = 'rect(auto,'+ contWidth +'px,' + contHeight +'px,auto)'; 
 id2.style.display = ''; 
 if(parseFloat(id1.style.left) == - parseFloat(id1.style.width+400)) 	
 { 	
 id1.style.left = '600px'; 
 } 	
 minuterie=setTimeout("clip()",20)
 }
 
function stop_start_clip(id)
 {
	 $("#"+id).mouseover(function () {clearTimeout(minuterie)});
	 $("#"+id).mouseout(function () {minuterie=setTimeout("clip()",20)});
 }
