$.fn.sexyImageLoader = function (duration) {
  $(this).each(function(i, node) {
    if ($('img', node).get(0).complete) {
      $('img', node).fadeIn();
    } else {
      $('img', node).load(function () {
        $('img', node).fadeIn();
      });
    }
  });
};

$(function() {
  $('.img_cont').sexyImageLoader();
})
