$(document).ready(function(){
	$(".bubble").hover(function() {
		$(this).next(".popup_bubble").animate({opacity: "show", top: "10"}, "fast");
	}, function() {
		$(this).next(".popup_bubble").animate({opacity: "hide", top: "25"}, "fast");
	});
});
