

// OSの分岐：macとそれ以外

 if(navigator.userAgent.indexOf("Mac")!=-1){
	if (navigator.userAgent.indexOf("Gecko")!=-1){ // NN6以降
		document.write('<link rel="stylesheet" type="text/css" href="../css/geckom.css">');

	} else { // その他
		document.write('<link rel="stylesheet" type="text/css" href="../css/mac.css">');
	}

 } else {

	if (navigator.userAgent.indexOf("Gecko")!=-1){ // NN6以降
		document.write('<link rel="stylesheet" type="text/css" href="../css/geckow.css">');

	} else { // その他
		document.write('<link rel="stylesheet" type="text/css" href="../css/normal.css">');
	}
}
