// JavaScript Document

		  	now = new Date();
			hours = now.getHours();
			mins = now.getMinutes();
			month = now.getMonth();
			date = now.getDate();
			year = now.getFullYear();
			
			if (hours > 12){
				hours = hours - 12;
				ampm = "PM";
			}
			else if(hours == 12){
				ampm = "PM";
			}
			else{
				ampm = "AM";
			}
			switch(month) {
				case 0:
					month = "JAN";
					break;
				case 1:
					month = "FEB";
					break;
				case 2:
					month = "MARCH";
					break;
				case 3:
					month = "APRIL";
					break;					
				case 4:
					month = "MAY";
					break;
				case 5:
					month = "JUNE";
					break;
				case 6:
					month = "JULY";
					break;
				case 7:
					month = "AUGUST";
					break;
				case 8:
					month = "SEP";
					break;
				case 9:
					month = "OCT";
					break;
				case 10:
					month = "NOV";
					break;
				case 11:
					month = "DEC";
					break;
			}
			if (mins < 10)
			{
			newmins = "0" + mins;
			}
			else
			{
			newmins = mins;
			}
			document.write(month + " " + date + " " + year + " | " + hours + ":" + newmins + " " + ampm);
