$(document).ready(function() {
    
  var marginLeft = 870;
  
  $( '#nav > li' ).each( function() {
    marginLeft -= $(this).width();
  });
  
  $('.gallery .thumbnail').hoverbox();
  
  $('#header_logo').hover(function() {
    $(this).fadeTo(250,0.5);
  }, function() {
    $(this).fadeTo(250,1);
  });

  adjust_borders();
  
  $(window).resize(function() { adjust_borders(); });

});

function adjust_borders () {
  $('.thin.horizontal').width($(this).width()-24).css('left','12px');
  $('.thin.vertical').height($(this).height()-24).css('top','12px');
}

function titleHover (info, xOffSet, yOffset) {
  $(document).mousemove(function(e) {
    info.css( 'top', (e.pageY - yOffset) + 'px' );
    info.css( 'left', (e.pageX - xOffset) + 'px' );
  });
}
