
var animate = function() {
  $(this).animate( {"left": "+=8px"}, 250)
         .animate( {"left": "-=14px"}, 200)
         .animate( {"left": "+=6px"}, 225);
}


var devnull = function() {} 

$(function(){
  var config = {    
       sensitivity: 3,    
       interval: 75,    
       over: animate,
       out: devnull   
  };
  $('.links a img').hoverIntent(config);
  $('#goto').hoverIntent(config);
  
  /*
  $('.links a img').click(function() {
    href = $(this).parent().attr('href');
    $('#intro').animate( {'top': '-=1000px'} , 'slow', false, function() {
      window.location.href = href;
    });
    return false;
  });
  */

 
});
