var aph = 0;
			var tmn = false;
			var nxt = 1;
			var prv = 3;
			var sents = new Array();
			sents[0] = "&#1488;&#1493;&#1499;&#1500; &#1494;&#1492; &#1488;&#1493;&#1502;&#1504;&#1493;&#1514; &#1493;&#1497;&#1510;&#1497;&#1512;&#1492;";
			sents[1] = "&#1488;&#1493;&#1499;&#1500; &#1494;&#1492; &#1504;&#1511;&#1493;&#1491;&#1514; &#1492;&#1502;&#1508;&#1490;&#1513; &#1489;&#1497;&#1503; &#1488;&#1504;&#1513;&#1497;&#1501;";
			sents[2] = "&#1488;&#1493;&#1499;&#1500; &#1494;&#1492; &#1492;&#1502;&#1511;&#1493;&#1501; &#1492;&#1502;&#1490;&#1503; &#1493;&#1506;&#1493;&#1496;&#1507;";
			sents[3] = "&#1488;&#1493;&#1499;&#1500; &#1494;&#1492; &#1489;&#1497;&#1500;&#1493;&#1497; &#1488;&#1497;&#1499;&#1493;&#1514;&#1497;";
			function moveto(n){
				if(tmn)clearTimeout(tmn);
				$('.photos').animate({right:(-586 * n)}, "slow", "linear", function(){ 
					pclass ='num'+(aph+1);
					$('.'+pclass).removeClass(pclass+'-act');
					pclass='num'+(n+1);
					$('.'+pclass).addClass(pclass+'-act');
					aph = n;
					nxt = n+1;
					prv = n-1;
					if(prv<0)prv=3;
					if(nxt==4)nxt = 0;
					$('#string').html(sents[n]);
					tmn = setTimeout('moveto('+nxt+')',5000);
				});
			}
			$(document).ready(function(){
				tmn = setTimeout('moveto(1)',5000);
			});