
function giftBasket()
{
	this.add = function(product_id)
	{
		Shadowbox.open({
				player:     'iframe',
				title:      'Gift Basket',
				content:    'giftbasket_add.php?product_id=' + product_id,
				width:		500,
				height:		500
			});

		return false;
	}

	this.open = function()
	{
		Shadowbox.open({
				player:     'iframe',
				title:      'Gift Basket',
				content:    'giftbasket.php',
				width:		500,
				height:		500
			});

		return false;
	}
}

var giftBasket = new giftBasket();