function date(){
	var cT = new Date();
	var month = cT.getMonth() + 1;
	var day = cT.getDate();
	var year = cT.getFullYear();
	
	if(month==1)month='January';
	if(month==2)month='February';
	if(month==3)month='March';
	if(month==4)month='April';
	if(month==5)month='May';
	if(month==6)month='June';
	if(month==7)month='July';
	if(month==8)month='August';
	if(month==9)month='September';
	if(month==10)month='October';
	if(month==11)month='November';
	if(month==12)month='December';
	
	document.getElementById('date').innerHTML=(day+" "+month+", "+year);
}