// cp shop coupons for teesed.com and family

// leave this be
	var coupons = new Array();
	var details = new Array();
	var today = new Date();
	var month = today.getMonth();
	var day = today.getDate();
	var year = today.getFullYear();
	var thisDate = new Date(year,month,day);
	thisDate = thisDate.getTime();
	var couponStartDate=new Date();
	var couponEndDate=new Date();
	today = today.toDateString();
	var i = 0;
	var showallcoupons;
	var x;
// leave this be



// first coupon - soonest to expire
var startmonth = "05";
var startday = "10";
var startyear = "2011";

var endmonth = "5";
var endday = "30";
var endyear = "2011";

var thediscount = "Memorial Weekend Special! 10% OFF YOUR ENTIRE ORDER OF $30+!   Use Code: ZAZZLEMMSALE";
var thedetails = '10% of the Zazzle product net sale price will be deducted when one or more qualifying products are purchased and the coupon code ZAZZLEMMSALE is applied at checkout. For most products, the net sale price is the price of the product (excluding shipping and taxes). For Zazzle Custom Stamps, the net sale price is the difference between the price of the Zazzle Custom Stamps (excluding shipping and taxes) and the face value of the postage. Offer is valid until May 30, 2011 at 11:59pm PT. This promotional offer may not be combined with any other Zazzle promotional or volume discount offers. If a volume discount applies to your order, you will receive either the discount set forth in this offer or the standard volume discount, whichever is greater. Offer valid on Zazzle.com only.';
var couponStartDate=new Date(startyear,startmonth,startday);
couponStartDate.setMonth(couponStartDate.getMonth()-1);
couponStartDate= couponStartDate.getTime();

var couponEndDate=new Date(endyear,endmonth,endday);
couponEndDate.setMonth(couponEndDate.getMonth()-1);
couponEndDate= couponEndDate.getTime();

if (couponStartDate<=thisDate && couponEndDate>=thisDate) {
	coupons[i] = thediscount;
	details[i] = thedetails;
	i++;
}


//next coupon

var startmonth = "11";
var startday = "29";
var startyear = "2010";

var endmonth = "6";
var endday = "1";
var endyear = "2011";

var thediscount = "Memorial Weekend Special! 10% OFF YOUR ENTIRE ORDER OF $30+!   Use Code: ZAZZLEMMSALE";
var thedetails = '10% of the Zazzle product net sale price will be deducted when one or more qualifying products are purchased and the coupon code ZAZZLEMMSALE is applied at checkout. For most products, the net sale price is the price of the product (excluding shipping and taxes). For Zazzle Custom Stamps, the net sale price is the difference between the price of the Zazzle Custom Stamps (excluding shipping and taxes) and the face value of the postage. Offer is valid until May 30, 2011 at 11:59pm PT. This promotional offer may not be combined with any other Zazzle promotional or volume discount offers. If a volume discount applies to your order, you will receive either the discount set forth in this offer or the standard volume discount, whichever is greater. Offer valid on Zazzle.com only.';
thedetails += '<i>Products in the shopping cart must begin with an 030- prefix to qualify for shop discounts and offers.';
var couponStartDate=new Date(startyear,startmonth,startday);
couponStartDate.setMonth(couponStartDate.getMonth()-1);
couponStartDate= couponStartDate.getTime();

var couponEndDate=new Date(endyear,endmonth,endday);
couponEndDate.setMonth(couponEndDate.getMonth()-1);
couponEndDate= couponEndDate.getTime();

if (couponStartDate<=thisDate && couponEndDate>=thisDate) {
	coupons[i] = thediscount;
	details[i] = thedetails;
	i++;
}



if (showallcoupons == "true") {
	
	for (x in coupons)
	{
	document.write ('<h3>' + coupons[x] + '</h3>');
	document.write ('<p class="details">' + details[x] + '</p>');
	}

} else {
	if (i>0) {
		document.write ('<div class="globalpromo"><div id="ribbonbanner"><span>');
		document.write(coupons[0]);
		document.write ('</span><div class="ribbondetails"><a href="javascript:launchHelp(\'http://www.shirtcrush.com/coupons.php\',\'height=400,width=410,scrollbars=1\')">*Details</a></div></div></div>');
	}
}




