
function SlideFoto3() {
$(".sld202").fadeOut(3000).delay(3000).fadeIn(3000,function(){
$(this).delay(3000);
return SlideFoto3();

});
$(".logolar > img").mouseover(function(){
$(this).animate({"width":"+=20px","height":"+=20px"},"slow");
});
$(".logolar > img").mouseleave(function(){
$(this).animate({"width":"-=20px","height":"-=20px"},"slow");
});

$(".glrTmb").click(function(){
$(".glrLght > img").detach();
var largeFoto = $(this).attr("src").replace("tmbnl/", "upload/");
$(".glrLght").fadeIn("slow").append("<img CLASS=largeFoto src="+ largeFoto +" />",function(){
var imgW =$(".largeFoto").width();
var imgH=$(".largeFoto").height();
$(".glrLght").text(imgW);
$(".glrLght").text(imgH);

});
});
$(".kapat").click(function(){
$(".glrLght").hide("slow");
});



}

 
$(document).ready(function() {		
	//Load the slideshow

	 SlideFoto3();
	
});
