$(document).ready(function(){
	$("#linkbag").hover(function() {
		$(this).children("div#popupbag").animate({opacity: "show", top: "18"}, "slow");
	}, function() {
		$(this).children("div#popupbag").animate({opacity: "hide", top: "13"}, "fast");
	});
});
