//*******************************************
// Fe-MAILトップ用 Javascript
//*******************************************



//===========================================
// コンテンツリンクの背景色を変更
//===========================================
function changeContentlinkBg () {
	// ブラウザがgetElement(s)関数を使えるかどうかチェック
	if (!document.getElementById || !document.createElement || !document.appendChild) { return false; }

	var e = document.myGetElementsByClassName("topContentList");
	if ( e.length ) {
		for (var i = 0; i < e.length; i++) {
			e[i].onmouseover = function() { this.style.backgroundColor = '#F6F6F6' }
			e[i].onmouseout  = function() { this.style.backgroundColor = '#FFFFFF' }
		}
	}
}



//===========================================
// onloadイベントに追加
//===========================================
if(window.onload) oldLoad = window.onload;
window.onload = function() {
	if(oldLoad) oldLoad();
	changeContentlinkBg();
}






