			var slx = 0;
			var slpg = 0;
			var slsy = 0;
			function zamanci(){
			slsy += 0.4;
				if (slsy > 1000){slpg +=1; slsy=0;}
				if (slpg > 9){slpg =0;}
				if (slpg < 0){slpg =9;}
				
				if (slx < slpg*780){slx +=Math.abs((slpg*780-slx)/10);
				if (slpg*780-slx <= 2){slx=slpg*780}
				}				
				if (slx > slpg*780){slx -=Math.abs((slpg*780-slx)/10);
				if (slx-slpg*780 <= 2){slx=slpg*780}
				}
				$('#pgsl').css("left",-slx+"px");
				$('#pgsl').css("opacity",Math.abs(1-(slpg*780-slx)/390));				
				$('#pgsl').css("-ms-filter","progid:DXImageTransform.Microsoft.Alpha(Opacity="+Math.abs(1-(slpg*780-slx)/3.9)+")");	
				$('#pgsl').css("filter:","alpha(opacity="+Math.abs(1-(slpg*780-slx)/3.9)+")");
				$('#pgsol').css("left",Math.abs(130-Math.abs(slpg*780-slx)/3)-130+"px");
				$('#pgsag').css("right",Math.abs(130-Math.abs(slpg*780-slx)/3)-130+"px");
				$('#pgnvs').css("left",slpg*50-1+"px");
				
				
			}
			function tiksol(){
			slpg -=1;
			slsy =0
			}
			function tiksag(){
			slpg +=1;
			slsy =0
			}
			function tik0(){ slpg =0; slsy =0;};
			function tik1(){ slpg =1; slsy =0;};
			function tik2(){ slpg =2; slsy =0;};
			function tik3(){ slpg =3; slsy =0;};
			function tik4(){ slpg =4; slsy =0;};
			function tik5(){ slpg =5; slsy =0;};
			function tik6(){ slpg =6; slsy =0;};
			function tik7(){ slpg =7; slsy =0;};
			function tik8(){ slpg =8; slsy =0;}
			function tik9(){ slpg =9; slsy =0;}
			
			init = setInterval("zamanci()", 10);
