//Checks the date and inserts the appropriate code for the Ticket purchase
function event_date_switch() {
	var today = new Date();
	var month = today.getMonth()+1;
	var day = today.getDate();

	if ((month<=11)&&(day<9)) {//before November 9
		document.getElementById('cheerful_event_button').href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=novelistkat00%40yahoo%2ecom&lc=US&item_name=GiveCheerfully%20Wine%20Tasting%20Nov%2022&amount=30%2e00&currency_code=USD&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted";
	}
	if ((month<=11)&&(day<22)&&(day>8)) {//before November 22
		document.getElementById('cheerful_event_button').href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=novelistkat00%40yahoo%2ecom&lc=US&item_name=GiveCheerfully%20Wine%20Tasting%20Nov%2022&amount=35%2e00&currency_code=USD&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted";
	}
	if ((month<=11)&&(day>21)) {//after November 21
		document.getElementById('cheerful_event_button').href="#";
		document.getElementById('cheerful_event_button').target="";
		document.getElementById('cheerful_event_button').onclick=event_alert;
	}
}

function event_alert() {
	alert("Thank you for showing your interest in our Charity Event." + '\n' + "However, the only tickets remaining are avaiable at the door for $40.");
}