$(function () {
  var img = new Image();
  $(img)
    .load(function () {
      $(img).hide();
      $('#hero')
        .removeClass('loading')
        .append(img);
      $(img).fadeIn(function () {
      $('#evalink').fadeIn();
	});
    })
    .error(function () {
    })
    .attr('src', 'images/hero.jpg');
});
