try
{
	var strURL = top.document.URL;

	if(top.document.location.protocol == "file:")
		strURL = strURL.replace(/[\\\/]text\.s*htm$/i, "/index.htm");
	else
		strURL = strURL.replace(/.shotokan-ryu-kase-ha/i, "").replace(/\/text\.s*htm$/i, "");

	if(top.document.URL != strURL)
		top.location = strURL;


	if(top.document.location.protocol == "file:")
	{
		function onDOMContentLoaded()
		{
			var el = document.getElementsByTagName("a");
			for(var i = 0; i < el.length; i++)
			{
				if(el[i].href.match(/^file:.*\/[^.]+[\/]*$/))
					el[i].href = el[i].href.replace(/\/$/, "") + "/index.htm";
			}
		}

		if(document.addEventListener) //W3C-compliant browser
			document.addEventListener("DOMContentLoaded", onDOMContentLoaded, false);
		else //IE
			document.onreadystatechange = function()
			{ if(document.readyState == "interactive" || document.readyState == "complete") onDOMContentLoaded(); }
	}
}
catch(e) {}

