
				
				var i = 0;
				var aplar= Array("img/anasayfa1.jpg", "img/anasayfa2.jpg", "img/anasayfa4.jpg")
				setInterval(function(){
					$("#noflashbox").css("background","url(" + aplar[i] + ")");
					i++;
					if(i>=aplar.length){i=0}
				}, 10000);
				
				function poz(){
					var t = $("#noflashbox").position().top + 20;
					var l = $("#noflashbox").position().left + 20;
					var f = t + $("#postit1").height() + 20;
					$("#postit1").offset({ top: t, left: l }).fadeIn("fast");
					// BIR BASKA NOT GIRILECEKSE ASAGIDAKI KOD AÇILARAK BASLASIN.
					// BÖYLELIKLE SAYFADA OTOMATIK POZISYON ALABILIR
					//$("#postit2").offset({ top: f, left: l }).fadeIn("fast").delay(500);
				}
				
				$(window).resize(function(){ poz() });		

				setTimeout(poz, 500);
	
