$(document).ready(function(){
$(window).load(
    function() {
		$('.display_photo').fadeIn('slow');
    }
);

$(function () {
  var img = new Image();
  $(img)
    .load(function () {
      $(this).hide();
      $('#photo_desc')
        .append(this);
      $(this).fadeIn();
    })
    .attr('src', 'http://designatnoon.com/assets_new/photo_desc.png');
});

$('#photo_desc').click(function() {
  $('#photo_desc').fadeOut('slow');
});

});
