// any ad-hoc JS functionality on the stumblelog goes here
$(document).ready(function() {
  
  // http://stumble.kapowaz.net/post/865634588/inception-infographic
  
  var t = null;
  var warning = $('div#inception_spoiler');
  var spoiler = $('div#inception_spoiler').siblings('a');
  
  warning.mouseover(function(){
    t = setTimeout(function(){
      warning.fadeOut('fast');
    }, 750);
  });
  warning.mouseout(function(){ clearTimeout(t); });
  spoiler.mouseout(function(){ warning.fadeIn('fast'); });
    
});
