$(function() {
  $('#gallery-photos a').click(function() {
    console.log(this);
    var link = $(this).attr('href');
    // $('#photobox-photo img').attr('src', link);
    $('#photobox-photo').html('<img src="' + link + '">');
    $('#photobox-background').fadeIn();
    $('#photobox').css('z-index', '10');
    $('body').click(function() {
      $('#photobox-background').fadeOut();
      $('#photobox').css('z-index', '-10');
    });
    return false;
  });
});
