//初期状態のタイトル名を保存
var oriTitle = document.title;

function nameOriChage(){
	var nowTitle = document.title;

	if(nowTitle != oriTitle){
		document.title = oriTitle;
	}
	n = setTimeout(nameOriChage,100);
}

//ブラウザ判別
var Agent = navigator.userAgent;

if(Agent.indexOf('MSIE')){
	n = setTimeout(nameOriChage,100);
}