$(function () {

	$("img.loading").load(function () {
      $(this).hide();
      $('#loader')
        .removeClass('loading')
        .show(this);
      $(this).fadeIn();
    });
});
