// JavaScript Document
$(function () {
	$('.jebanImageLoader').each(function(index,el){
		var img = new Image();
		$(img).load(function () {
			$(this).css('display','none');
			$(el).removeClass('loading').append(this);
			$(this).fadeIn();
		}).error(function () {
			$(el).remove();
		}).attr('src', images[index]);
	});
});	
