// varsion check //

// var browser = navigator.appName;
var ua = navigator.userAgent;

	
	this.IE5 = (ua.indexOf("MSIE 5") != -1);
	this.IE50 = (ua.indexOf("MSIE 5.0") != -1);
	this.IE55 = (ua.indexOf("MSIE 5.5") != -1);
	this.IE6 = (ua.indexOf("MSIE 6") != -1);
	this.IE7 = (ua.indexOf("MSIE 7") != -1);
	this.IE   = (ua.indexOf("MSIE") != -1);
	this.Op  = (ua.match(/Opera/) != null); // Opera "6" only
	this.Win  = (ua.indexOf("Windows") != -1);
	this.Mac  = (ua.indexOf("Mac") != -1);
	this.Moz  = (ua.indexOf("Gecko") != -1);
	if (this.Op) this.IE50 = this.IE = false; // WinIE を騙っていた時の対策


// 各ブラウザ用補正 CSS のファイル名]
if  (this.Op && this.Mac) 
{document.write('<LINK rel="stylesheet" href="../css/opera_mac.css" type="text/css">');}
if  (this.Op && this.Win) 
{document.write('<LINK rel="stylesheet" href="../css/opera_win.css" type="text/css">');}


else if (this.IE50 && this.Win) 
{document.write('<LINK rel="stylesheet" href="../css/win_ie.css" type="text/css">');}
else if (this.IE55 && this.Win)
{document.write('<LINK rel="stylesheet" href="../css/win_ie.css" type="text/css">');}
else if  (this.IE6 && this.Win)
{document.write('<LINK rel="stylesheet" href="../css/win_ie.css" type="text/css">');}
else if (this.IE7 && this.Win)
{document.write('<LINK rel="stylesheet" href="../css/win_ie7.css" type="text/css">');}
else if (this.IE && this.Win) 
{document.write('<LINK rel="stylesheet" href="../css/win_ie.css" type="text/css">');}
else if (this.IE && this.Mac)
{document.write('<LINK rel="stylesheet" href="../css/mac_ie.css" type="text/css">');}

else if  (this.Moz && this.Mac) 
{document.write('<LINK rel="stylesheet" href="../css/mac_nn.css" type="text/css">');}
else if (this.Win)
{document.write('<LINK rel="stylesheet" href="../css/win_nn.css" type="text/css">');}
else if (this.Moz && this.Win) 
{document.write('<LINK rel="stylesheet" href="../css/win_nn.css" type="text/css">');}

//footer表記//
function footerObj() {
	html = ''
		+'<!-- バナー start -->'
		+'<div class="ban"><a href="../mutsu/index.html"><img src="../images/mutuu_banner.jpg" alt="むつう整体とは？" width="192" height="50" border="0"></a></div>'
		+'<div class="ban"><a href="http://www.innate-force.or.jp/" target="_blank"><img src="../images/innate_banner.jpg" alt="イネイト健康法実践研究会" width="192" height="50" border="0"></a></div>'
		+'<div class="ban"><a href="http://www.mutsuu.com/mugi/" target="_blank"><img src="../images/mugi_banner.jpg" alt="天然酵母パンの店　麦" width="192" height="50" border="0"></a></div>'
		+'<div class="ban"><a href="http://blogs.yahoo.co.jp/mutsuu05" target="_blank"><img src="../images/blog_banner.jpg" alt="むつう整体　木村仁ブログ" width="192" height="50" border="0"></a></div>'
		+'<div class="kaijo"></div>'
		+'<!-- バナー　end  -->'
		+'<!-- リンク start -->'
		+'<div id="foot_link">'
		+'<a href="http://www.mutsuu.com/zero/index.html">HOME</a> 　│　'
		+'<a href="../sitemap/index.html">サイトマップ</a>　│　'
		+'<a href="../links/index.html">リンク</a>　│　'
		+'<a href="../company/site.html">このサイトについて</a>　│　'
		+'<a href="../company/policy.html">プライバシーポリシー</a>　│　'
		+'<a href="../inquiry/index.html">お問合せ</a>　│　'
		+'<a href="../company/index.html">会社概要</a>　'
		+'</div><!-- リンク end -->'
		+'Copyright(C) 2001-<script type="text/javascript">myDate = new Date();myYear = myDate.getFullYear();document.write(myYear);</script> MUTSUU.All rights reserved.'
		
		document.write(html);
}