//CMS用ロールオーバーjs

//適用要素
var el2 = "ul";

//適用クラス名
var cls = "item";

//親divクラス名
var cls_2 = "cms_area";

function Rollover() {
	if(document.getElementsByTagName) {
		var anc = document.getElementsByTagName(el2);
		for(var i=0; i < anc.length; i++) {
			if ( (anc[i].getAttribute('class')||anc[i].getAttribute('className') ) == cls )
			{
				
				var pare1 = anc[i].parentNode;
				if((pare1.getAttribute('class')||pare1.getAttribute('className')) == cls_2)
				{
				
					anc[i].onmouseover = function() {
						this.style.background='#ffd8e5';
						this.style.border='1px solid #f6adc6';
					}
					anc[i].onmouseout = function() {
						this.style.background='#ffffff';
						this.style.border='1px solid #ffffff'
					}
				}
			}
		}
	}
}

addListener(window,'load',Rollover);