
window.onload = function() {
	var menu = document.getElementById("irMenu");

	var listA = menu.getElementsByTagName( 'a');

	// IE6で不具合が発生する為、UAでIE6判別
	var ie6 = 0;
	if( navigator.userAgent.indexOf( "MSIE 6", 0) != -1){
		ie6 = 1;
	}

	var strFilename = document.URL;
	strFilename = strFilename.replace( /.*\//, '');

	for( var cnt = 0; cnt < listA.length; cnt++){
		var listHref = listA[ cnt].href;
		listHref = listHref.replace( /.*\//, '');
		if( listHref == strFilename){
			listA[ cnt].style.backgroundColor = '#9F6';
		}
	}
}
