$(document).ready(function(){	
	$(".globoemergente").parent().children('.imgbocadillo').hover(function() {
		$(this).parent().children(".globoemergente").stop(true, true).animate({opacity: 0.9, left: "0",top: "-80",width:220}, 50);
	}, function() {
		$(this).parent().children(".globoemergente").animate({opacity: 0, left: "-1000",top: "-80", width:22}, 50);
	});	
});