// JavaScript Document
/*
IEのアンカーハッシュによる、タイトル書き換えを修正するスクリプト
使い方：</head>タグの直前でインクルードさせる
*/
if(window.attachEvent)//MS IE
{
	if( document.getElementsByTagName('object') )
	{
		var documentTitle;
		documentTitle = document.getElementsByTagName('title')[0].innerHTML;
		function titleSaverFromSwf()
		{
		document.title = documentTitle;
		}
		setInterval('titleSaverFromSwf()',500);
	}
}
