$(document).ready(function(){
$('div#logo').bind('mouseenter',function(){
      $('div#bubble').show('fast');
    }).bind('mouseleave',function(){
      $('div#bubble').hide('fast');
    });
});

