// Adapted from: http://www.dvq.co.nz/jquery/create-a-jquery-popup-bubble-effect/

$(document).ready(function(){
 
	$(".giftcard").hover(function() {
	$(".giftcard-popup p").stop(true, true).animate({opacity: "show", top: "-160"}, "slow");
	}, function() {
	$(".giftcard-popup p").animate({opacity: "hide", top: "-170"}, "fast");
	});
 
});