$(document).ready(function() {	
	//message for cart
	$(".actions input[name=bt_cart]").click(function() {
		$("div[class^=msg_]", $(this).parents(".store")).hide();
		$(".msg_cart", $(this).parents(".store")).show();
		return false;
	});
	
	$(".actions input[name=bt_gift]").click(function() {
		$("div[class^=msg_]", $(this).parents(".store")).hide();
		$(".msg_gift", $(this).parents(".store")).show();
		$(".msg_gift .pointer-down", $(this).parents(".store")).css("margin-left", "166px");
		return false;
	});
	
	$("div[class^=msg_] a[name=bt_remove]").click(function() {
		$(this).parents("div[class^=msg_]").hide();
		return false;
	});
});