$(document).ready(function(){
  /* Inv Bubble */
  $("#homeInv li, #newInv li").hover(function(){
    $bubble = $(this);
      
    menuOpen = setTimeout(function(){
      $bubble.find(".bubble").fadeIn();
    }, 150);
  }, function(){
    clearTimeout(menuOpen);
    $bubble.find(".bubble").fadeOut();
  });
});
