document.observe('dom:loaded', function() {
	if ($('gift-coupon')) {
		var divElem = new Element('div', { 'class': 'webshop-coupon-question' });
			divElem.update('<a href="' + document.location + '">' + PbLib.g('Do you have a gift coupon?') + '</a>');
			divElem.observe('click', function(event) {
				this.hide();
				$('gift-coupon').down('fieldset').show();
				$('gift-coupon').down('div.submit').show();
				event.stop();
				return false;
			});

		$('gift-coupon').down('fieldset').hide();
		$('gift-coupon').down('div.submit').hide();
		$('gift-coupon').down('div').insert(divElem);
	}
});