// JavaScript Document


function clip(){
	var i=0;
	var p=3;
	var obj1=document.getElementById('pict1');
	var obj2=document.getElementById('pict2');
	var t1;
	setInterval(function(){			//Закрываем первй див	 
		
		t1=setInterval(function(){
							      if (520>i){
									i+=10;
									//alert(i);
									obj2.style.width=i+'px';
									//obj2.style.clip='rect(auto,'+i+'px,auto,auto)';
								  }else {clearInterval(t1);obj1.style.backgroundImage='url(imgs/scrols/'+p+'.jpg)';++p;} 
		},1);
		
		setTimeout(function(){
				t1=setInterval(function(){
							      if (0<i){
									i-=10;
									//alert(i);
									obj2.style.width=i+'px';
									//obj2.style.clip='rect(auto,'+i+'px,auto,auto)';
								  }else {clearInterval(t1); obj2.style.backgroundImage='url(imgs/scrols/'+p+'.jpg)';++p;} 
				},1);
							},5000);
		
	if(p==5)p=1;	
	
	},10000);
}
