//$(document).ready(function(){
//     var bounceBee;
//     $('html').hover(function(){
//            bounceBee = window.setInterval(bounceHim,300);
//    },function(){
//          window.clearInterval(bounceBee);
//  });
//});
 
$(document).ready(function(){
       window.setInterval(bounce,300);
	   window.setInterval(bounce_shadow,300);
});

function bounce(){
		$("#bee").animate({top:"-=2px"},150).animate({top:"+=2px"},150);
	
}

function bounce_shadow(){
		$("#bee_shadow").animate({top:"+=2px"},150).animate({top:"-=2px"},150);
	
}



