  $(document).ready(function(){
    $('.work-entry a').hover(
      function() {
        $(this).animate({backgroundColor: '#ffffff'}, 'normal');
      },
      function() {
        $(this).animate({backgroundColor: '#adadad'}, 'normal');
      }
    );
    
    $('.related-item a').hover(
      function() {
        $(this).animate({backgroundColor: '#ffffff'}, 'normal');
      },
      function() {
        $(this).animate({backgroundColor: '#000000'}, 'normal');
      }
    );
    
    $('#s-about .people-entry a').hover(
      function() {
        $(this).animate({backgroundColor: '#ffffff'}, 'normal');
      },
      function() {
        $(this).animate({backgroundColor: '#9c9c9c'}, 'normal');
      }
    );

    // Open all external links in a new window
    $('a[rel="external"]').click( function() {
       window.open( $(this).attr('href') );
       return false;
    });
    
    $('#project-images').cycle({ 
      fx:     'scrollHorz',
      speed:  'fast', 
      prev:   '#prev', 
      next:   '#next', 
      containerResize: 0,
      timeout: 0 
    });
  });
