
var simpleCart = new cart("tesslorraine@gmail.com");
$(document).ready(function(){
	$('.discount-store').addClass('hide');
	var correctCoupon = ["DANJETER", "WALDORF", "BLACKBIRD", "SABRINA", "LIGHTFOOT", "BLC", "ANGLEN", "SEATON", "SWAGGERTY", "ROBERTS", "WEISS", "MALLETT", "LIFETIME", "ALLEN", "ANOTHERPHOTOGRAPHER", "SCOTTS", "BAMBER", "DOTSON", "BEASLEY", "ASLINGER", "PATTERSON", "POWER", "CLARK", "INNAMORATA", "DAISYMOFFATT", "LANGSTON", "DUNMORE", "AMYLEIGH", "CHARIS", "LEDFORD", "RICHSMITH", "SHADESOFGREY", "LORILINE", "HENRY", "LOVEBIRDSFAN"]
	$('#coupon').submit(function() {
		if ($.inArray($("#couponcode").val().toUpperCase(), correctCoupon) != -1)
		{
		$('<div class="message"><h2>Coupon code correct! All items 15% off!</div>')
			    .insertAfter( $('#couponcode') )
			    .fadeIn('slow');
		$('.regular-store').addClass('hide');
		$('.discount-store').removeClass('hide');
		return false;
			} else if ($('#couponcode').val() == "") {
				alert("No code entered.");
					} else {
						alert("Coupon code incorrect!")
		}
	});
	$('p.hideCart a').click(function(){
		$('.cartSection').slideUp('slow');
		$('p.hideCart').addClass('hide');
		$('p.showCart').removeClass('hide');
	});
});