$(document).ready(function(){
	$("#listevent li").hover(function() {
		$(this).children("div.bubble").animate({opacity: "show", top: "-80"}, "slow");
	}, function() {
		$(this).children("div.bubble").animate({opacity: "hide", top: "-60"}, "fast");
	});
});