function announce_full() {
	document.write("<p>【2009年9月14日】2009年是我生命中变化最大的一年，这一年里发生的三件大事，对我今后的一生都会产生重大的影响。在感觉自己进一步成熟的同时，也开始敢于真正地面对自己，面对困难，面对挑战。久违了的奋斗的激情，又开始慢慢燃起。欣慰的是，乐观依旧，信心依旧，而且更学会了一种新的力量，就是坚持。</p>");
}

function announce_desc() {
	document.write("【2009年9月14日】2009年是我生命中变化最大的一年");
}

function displayNote(x, y, note) {
	note.style.left = x+document.body.scrollLeft;
	note.style.top = y+document.body.scrollTop;
	note.style.display = "";
}

function hideNote(note) {
	note.style.display = "none";
}

function changeBG(cellId, bgImg) {
	var cell;
	if (document.all) {
		cell = document.all[cellId];
	} else {
		cell = document.getElementById(cellId);
	}
	cell.background = bgImg;
}

function changeIMG() {
	if (document.images) {
		for (var i=0; i<changeIMG.arguments.length; i+=2) {
			document[changeIMG.arguments[i]].src = changeIMG.arguments[i+1];
		}
	}
}

//var whatNew = ["myself",
//               "mystudies",
//               "myphotoes",
//               "myessays",
//               "mycollections",
//               "lyrics",
//               "movies",
//               "dragonball",
//               "transformers",
//               "funs",
//               "mystars",
//               "tintin",
//               "mygames",
//               "nintendo",
//               "game_arcade",
//               "game_sega",
//               "game_pc",
//               "myimaginations",
//               "family",
//               "jinyong",
//               "hardware",
//               "hw_info3",
//               "hw_info2",
//               "hw_info1"];
var whatNew = [];
function checkIsNew(section) {
	for (var i=0; i<whatNew.length; i++) {
		if (whatNew[i] == section) {
			document.write("&nbsp;<img border=0 src=\"http://www.yuanlei.com/myicons/new.gif\" width=29 height=13>");
			break;
		}
	}
}