jQuery(document).ready(csslider);
	function csslider()
	{
		jQuery(".csslider:gt(0)").hide();
		jQuery("html").find("div.csslider").each(function(i){
		$divn=i+1;	
		});
		$start = 0;
		$startt = 1;
		yaz = jQuery(".csslider img:eq("+$start+")").attr("title");
		jQuery(".text").html(yaz);
		if(0==$startt-1){				
		jQuery(".back").html("&Ouml;nceki");
		}
		jQuery(".next").click(function () {
			if($divn==$startt+1){
				jQuery(".next").html("Sonraki");
			}
			if(0<$startt){				
				jQuery(".back").html("&Ouml;nceki");
			}
			if($divn!=$startt){
				jQuery(".csslider:eq("+$start+")").fadeOut("fast");
				jQuery(".csslider:eq("+$startt+")").fadeIn("slow");
				yaz = jQuery(".csslider img:eq("+$startt+")").attr("title");
				jQuery(".text").html(yaz);
				$start = $start+1;
				$startt = $startt+1;
			}
		});
		jQuery(".back").click(function () {
			if(0!=$start) {
				$start = $start-1;
				$startt = $startt-1;
			}
			if($divn>=$start){
				jQuery(".csslider:eq("+$start+")").fadeIn("slow");
				jQuery(".csslider:eq("+$startt+")").fadeOut("fast");
				yaz = jQuery(".csslider img:eq("+$start+")").attr("title");
				jQuery(".text").html(yaz);
			}
			if(0==$startt-1){	
				jQuery(".next").html("Sonraki");
				jQuery(".back").html("&Ouml;nceki");
			}
		});
	}