/*IE用のinput hover関数*/

function hovermenu(str){
 var y=str.offsetHeight;
 str.style.backgroundPosition = '0 -'+y+'px'; 
 str.style.cursor='pointer';
 return false;
}

function returnmenu(str){
 str.style.backgroundPosition = '0 0'; 
 return false;
}

/*アンカークリックでタイトルを変更*/
function changehtmltitle(obj){
	if(obj != null){
		var objtitle=document.getElementById(obj).title; 
		document.title=objtitle;
		}
	else if(window.location.hash != ""){
		var obj="d_"+window.location.hash.substr(1);
		var objtitle=document.getElementById(obj).title; 
		document.title=objtitle;
	}
}

