$(document).ready(function(){
	$('.ana_resim img').hide();
	$('.ana_resim img:first').fadeIn();
	
	$('.mini_resim_list a').click(function(){
		var a = $(this).index();
		$('.ana_resim img').hide();
		$(".ana_resim img:eq("+a+")").fadeIn('fast');
	});
});
