window.onload = WindowOnload;

function WindowOnload() {
	ShowComment();
	SetYear();
}

function ShowComment() {
	var commentNum = Math.random();
	commentNum = Math.round(commentNum);
	commentNum++;
	if (document.getElementById("comment_"+commentNum)) {
		document.getElementById("comment_"+commentNum).className = "";
	}
}

function SetYear() {
	if (document.getElementById("year")) {
		var year = new Date();
		document.getElementById("year").innerHTML = year.getFullYear();
	}
}