$(document).ready(function(){
	$(".img_holder").each(function(i) {
		id = $(this).attr('id');
		title = $(this).attr('title');
		$(this).html('<img src="images/'+ id +'.jpg" style="display:none;" class="ajaxLoad_'+ i +'" title="'+ title +'" width="215" height="140" />');
		$(".ajaxLoad_"+i+"").load(function () {
			$(".ajaxLoad_"+i+"").delay(200).fadeIn(1000);
		});
	});
});    
