// ============================// CALENDAR AND TOUT FUNCTIONS// ============================var currDate = new Date();var month = currDate.getMonth();//var month = 9; // FOR TESTING//alert(month);var today = currDate.getDate();//var today = 24; // FOR TESTING//alert(today);if (month < 9){	today = 1;}else if (month > 9){	today = 31;}// ================================================// INDEX PG "TODAYS FEATURE" TOUT// ================================================function start_ind_tout() {	if(today == 6 || today == 8 || today == 13 || today == 15 || today == 17 || today == 20 || today == 22 || today == 24 || today == 27 || today == 29)	{		document.write('<p><a href="pg_sweep_gift.cfm?sweep2day='+today+'"><img src="images\/ind_feat_gift.gif" width="222" height="205" alt="WIN A GIFT BASKET" \/><\/a><\/p>');	}	else	{		document.write('<p><a href="pg_qa.cfm?qa='+today+'"><img src="images\/ind_feat_qa.gif" width="222" height="205" alt="Q&amp;A  a minute with KAT VON D" \/><\/a><\/p>');	}}// ================================================// INDEX PG CALENDAR// ================================================function start_ind_cal() {	var filename = 'ind_cal_'+today;		document.write('<img src="images\/'+filename+'.gif" width="362" height="165" alt="Click here for TODAYS FEATURE" \/>');}// ================================================// INTERIOR NAVIGATION "TODAYS FEATURE" BUTTON CODE// ================================================function start_nav_feat() {	if(today == 6 || today == 8 || today == 13 || today == 15 || today == 17 || today == 20 || today == 22 || today == 24 || today == 27 || today == 29)	{		document.write('<a href="pg_sweep_gift.cfm"><img src="images/nav_feat.gif" width="105" height="77" alt="TODAY&rsquo;S FEATURE" /></a>');	}	else	{		document.write('<a href="pg_qa.cfm?qa='+today+'"><img src="images/nav_feat.gif" width="105" height="77" alt="TODAY&rsquo;S FEATURE" /></a>');	}}// ================================================// CALENDAR PAGE "TODAYS FEATURE" IMG SWAP TOUT// ================================================function start_tout() {	if(today == 6 || today == 8 || today == 13 || today == 15 || today == 17 || today == 20 || today == 22 || today == 24 || today == 27 || today == 29)	{		document.write('<p><img src="images\/cal_feat.jpg" width="222" height="345" name="cal_feat" alt="TODAYS FEATURE" \/><\/p>');	}	else	{		document.write('<p><img src="images\/cal_feat_f2.jpg" width="222" height="345" name="cal_feat" alt="TODAYS FEATURE" \/><\/p>');	}}// ================================================// CALENDAR PAGE CALENDAR BUILD AND FUNCTIONS// ================================================function start_cal() {		var i=0;	for (i=1;i<=31;i++)	{		var filename = 'cal_day_'+i;				// 6 8 13 15 17 20 22 24 27 29 - SWEEP DAYS USE cal_feat.jpg		// ALL OTHER DAYS USE cal_feat_f2.jpg				if(i == today)		{						if(i == 6 || i == 8 || i == 13 || i == 15 || i == 17 || i == 20 || i == 22 || i == 24 || i == 27 || i == 29)			{				document.write('<div class="day today"><a href="pg_sweep_gift.cfm?sweep2day='+today+'"><img src="images\/'+filename+'_f3.png" alt="'+i+' WIN" \/><\/a><\/div>');			}						else			{				document.write('<div class="day today"><a href="pg_qa.cfm?qa='+i+'");"><img src="images\/'+filename+'_f3.png" alt="'+i+' Q&amp;A" \/><\/a><\/div>');			}					}		else if(i < today)		{						if(i == 6 || i == 8 || i == 13 || i == 15 || i == 17 || i == 20 || i == 22 || i == 24 || i == 27 || i == 29)			{				document.write('<div class="day past_disable"><img src="images\/'+filename+'_f2.png" alt="'+i+' WIN" \/><\/div>');			}						else			{				document.write('<div class="day past"><a href="pg_qa.cfm?qa='+i+'");"><img src="images\/'+filename+'_f2.png" alt="'+i+' Q&amp;A" \/><\/a><\/div>');			}					}		else if(i > today)		{						if(i == 6 || i == 8 || i == 13 || i == 15 || i == 17 || i == 20 || i == 22 || i == 24 || i == 27 || i == 29)			{				document.write('<div class="day past_disable"><img src="images\/'+filename+'_f2.png" alt="'+i+' WIN" \/><\/div>');			}						else			{				document.write('<div class="day past"><a href="pg_qa.cfm?qa='+i+'");"><img src="images\/'+filename+'_f2.png" alt="'+i+' Q&amp;A" \/><\/a><\/div>');			}					}			}	}