MyDate = {
	
	getHours : function(theHour){
		return (theHour>12 || theHour==0) ? Math.abs(theHour-12) : theHour;
	},
	
	getAmPm : function(theHour){
		return (theHour<12) ? "AM" : "PM";
	},
	setDate : function(){
		var now = new Date();
		
		this.year = now.getFullYear();
	},
	getDate : function(){
		this.setDate();
		return "&copy;"+this.year+" NIPPON ELECTRIC INSTRUMENT , INC All right reserved.";
	}
}

// ||||||||||||||||||||||||||||||||||||||||||||||||||

function showDate(){
	document.getElementById("theDate").innerHTML = MyDate.getDate();
}
function initDate(){
	dateTimer = setInterval("showDate()",1000);
}
onload = initDate;
