$(document).ready(function(){
	$('.ilan_kucuk_foto').click(function () {
		var _foto_url = $(this).attr('src').replace("-100.", "-480.");									 
		$('.ilan_buyuk_foto').attr('src',var_site+'images/yukleniyor2.gif');
		$(new Image()).load(function() {
			$('.ilan_buyuk_foto').attr('src',_foto_url);
		}).attr('src',_foto_url);		
		
	});
	
	$.getJSON(var_site+'ajax/ver_ilan_count/'+$('#ilan_id').val()+'/'+Math.random(),
		function(data){
			$('#sayac').html(data.count);
		}
	);
	
});