/* coloring table */
function init() {
		var tableRows = document.getElementsByTagName("tr");
		for(var i=0; i<tableRows.length; i++) {
			if (i % 2 == 0) {
				tableRows[i].style.backgroundColor= '#D6EBFF';
			} else {
				tableRows[i].style.backgroundColor= '#FFFFFF';
			}
		}
}