$(function(){
 
  var div = $('#respects'),
  ul = $('#logos'),
  ulPadding = 25;
 
  var divWidth = div.width();
  div.css({overflow: 'hidden'});

  var lastLi = ul.find('li:last-child');

  div.mousemove(function(e){
	var ulWidth = lastLi[0].offsetLeft + lastLi.outerWidth() + ulPadding;
    var left = (e.pageX - div.offset().left) * (ulWidth-divWidth) / divWidth;
    div.scrollLeft(left);
  });
  
  $('#logos li img').animate({opacity: 0.5}, 0 );
  $('#logos li img').mouseover(function(){
  	$(this).animate({opacity: 1}, 1000 );
  });
  $('#logos li img').mouseout(function(){
    	$(this).animate({opacity: 0.5}, 500 );
  });

   $("#logos li a").fancybox();

   $('#content table tbody tr').mouseover(function() {
		$(this).addClass('hover');
	}).mouseout(function() {
		$(this).removeClass('hover');
	});
    $('#content table tbody tr:even').addClass('alt');
});