function insertDate()
{
	dayName = new Array("", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday");
	monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
	now = new Date;

	var strDay;
	if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) 		// Correction for 11th and 1st/21st/31st
		strDay = "st ";
	else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) 	// Correction for 12th and 2nd/22nd/32nd
		strDay = "nd ";
	else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3)) 	// Correction for 13th and 3rd/23rd/33rd
		strDay = "rd ";
	else
		strDay = "th ";
	try{
		document.write(dayName[now.getDay()] + ' ' + now.getDate() + strDay + monName[now.getMonth()] + ' ' + now.getFullYear());
	} catch(err){}
}

var arrayEmails=new Array();
	arrayEmails[0]=new Array();
	arrayEmails[0][0]='enquiries';
	arrayEmails[0][1]='chicklit.co.uk';
	
function email(thisLink,what,which)
{
	switch (which)
	{
		case 0:
			thisLink.href='mai' + 'lto:' + arrayEmails[what][0] + '@' + arrayEmails[what][1];
			return true;
			break;
		case 1:
			window.status='mai' + 'lto:' + arrayEmails[what][0] + '@' + arrayEmails[what][1];
			return true;
			break;
		case 2:
			window.status='';
			return true;
			break;
		case 3:
			return arrayEmails[what][0] + '@' + arrayEmails[what][1];
	}
}