$(document).ready(function() {

	$('#reset').bind('click', function() {
		return confirm("Are you sure you want to start again?\nYour existing selections will be lost!");
	});

	$('#discountCodeInfo').hide();

	$('#discountCodeBox').append('<a href="#" class="showDiscountInfo">What is this?</a>');
	$('#discountCodeInfo').append('<p><a href="#" class="hideDiscountInfo">OK, I understand!</a></p>');

	$('.showDiscountInfo').bind('click', function() {
		$('#discountCodeInfo').fadeIn();
		$('.showDiscountInfo').fadeOut();
	});

	$('.hideDiscountInfo').bind('click', function() {
		$('#discountCodeInfo').fadeOut();
		$('.showDiscountInfo').fadeIn();
	});

	$('a[rel=popup]').bind('click', function() {
		var popup = window.open($(this).attr('href'), 'popWindow');
		if (!popup)
		{
			alert("You appear to have a pop-up blocker installed.\nPlease disable popups for this website.\n\nWe promise we won't abuse your browser!");
		}
		else
		{
			popup.focus();
		}
		return false;
	});

	var antispam = /anti-spam-remove-/i;
	$('a[href^=mailto]').each( function() {
		$(this).attr('href', $(this).attr('href').replace(antispam, ''));
		$(this).text($(this).text().replace(antispam, ''));
	});
});

