var d_names = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");

var m_names = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");


var d = new Date();
var curr_day = d.getDay();
var curr_date = d.getDate();
var curr_month = d.getMonth();
var curr_year = d.getFullYear();

document.write(CCPgetDate());

function CCPgetDate()
{
	/*if(curr_date <= 7 && curr_day == 5)
	{
		return "Today is " + d_names[curr_day] + ", " + m_names[curr_month] + " " + curr_date + ",  " + curr_year + ", &lt;a href=\"prayerstoJesus.html\"&gt;first " + d_names[curr_day] + " of the month&lt;/a&gt;.";
	}
	else if(curr_date <= 7 && curr_day == 6)
	{
		return "Today is " + d_names[curr_day] + ", " + m_names[curr_month] + " " + curr_date + ",  " + curr_year + ", &lt;a href=\"prayerstoOurLady.html\"&gt;first " + d_names[curr_day] + " of the month&lt;/a&gt;.";
	}
	else
	{*/
		return "Today is " + d_names[curr_day] + ", " + m_names[curr_month] + " " + curr_date + ",  " + curr_year;
	//}
}
