/*==================================================================

	File_name    : chbg.js
	Description  : topics entry motion
	Version      : 1.00 
	The date     : 2007.07.19
	
	index /////////////////////////////////////////////////////

		-- change bg event

	//////////////////////////////////////////////////////////

================================================================== */


/*==================================================================
change bg event
================================================================== */
function chBgInit() {
	var elem = $('topicsList').getElementsByTagName("div");
	
	for(var i = 0; i < elem.length; i++) {
		elem[i].onmouseover = function () {
			this.style.backgroundColor = "#e4e4e4";
		}
		elem[i].onmouseout = function () {
			this.style.backgroundColor = "#ffffff";
		}
	}
	
	//alert(elem);
}

addEvent(window, 'load', chBgInit, false);