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