$(document).ready(function(){

	var width  = 180; // 画像の横幅
	var height = 70; // 画像の高さ
	var image  = "http://www.animate-onlineshop.jp/user_data/packages/animate/images/img_popup.gif" // 画像ファイル

	var element = '<img class="popup" src="' + image + '" width="'+width+'" height="'+height+'" alt="" />';

	$(".animate_addcart").click( function(){
		var position = $(this).position();
		var buttonWidth = $(this).width();

		var popupPosition = {
			top : position.top - height -5,
			left: position.left
		};

		$(this).parent().prepend(element);
		var popup = $(this).parent().children(".popup");
		popup.css("top", popupPosition.top+"px");

		var t = setTimeout(
			function() {
				$(".popup").fadeOut("slow");
				clearTimeout(t);
			}, 1000
		);
		
		return true;

	});

});