$(document).ready(function(){
	$(".img_holder").each(function(i) {
		id = $(this).attr('id');
		$(this).html('<img src="http://www.vidi-media.com/wp-content/themes/vidimedia/images/'+ id +'.gif" style="display:none;background:none repeat scroll 0 0 #fff;" class="ajaxLoad_'+ i +'"  />');
		$(".ajaxLoad_"+i+"").load(function () {
			$(".ajaxLoad_"+i+"").delay(200).fadeIn(1000);
		});
	});
});

