$(document).ready(function() {
$('.loader').each(function()
					{
						var parent = $(this).parent();
						var source = $(this).attr('src');
						parent.empty().append('<img src="/images/loader.gif" alt="Loading" width="16" height="16" style="display:block; margin:160px auto 0 auto;" />');
						var img = new Image();
						$(img).hide().load(function () {
							var image = $(this);
							parent.fadeOut('fast', function() {
								image.show();
								$(this).empty().append(image).fadeIn('slow');
							});
						}).attr('src',source);
					});
	});

