// ボディ用CSSの振り分け
FF=/a/[-1]=='a'	// FireFox判定
Saf=/a/.__proto__=='//'
if(FF){
	// FF
	document.write('<link rel="stylesheet" type="text/css" href="css/bodyFF.css">');
} else {
	// IE
	document.write('<link rel="stylesheet" type="text/css" href="css/bodyIE.css">');
}

