//背景色の切り替え

//――――――――――――――――――――――――――――――――――――――
// 作成者:るび〜  ACCESS R  http://www5e.biglobe.ne.jp/~access_r/
//――――――――――――――――――――――――――――――――――――――


var cssfile = new Array();
cssfile[0] = "/designs/default_home/color_nomal.css";	//デフォルトのスタイルシートファイル
cssfile[1] = "/designs/default_home/color_black.css";	//黒背景のスタイルシートファイル
cssfile[2] = "/designs/default_home/color_blue.css";	//青背景のスタイルシートファイル

var css = GetCookie("CSS");
if(css == ""){css = cssfile[0];}
document.write('<LINK REL="stylesheet" HREF="' + css + '" TYPE="text/css">');

//function SetCss(sel){
//	if(sel.options[sel.selectedIndex].value){
//		SetCookie("CSS", cssfile[sel.options[sel.selectedIndex].value - 1]);
//		window.location.reload();
//	}
//}

function SetCss(val){
	SetCookie("CSS", cssfile[val - 1]);
	window.location.reload();
}

function GetCookie(key){
	var tmp = document.cookie + ";";
	var index1 = tmp.indexOf(key, 0);
	if(index1 != -1){
		tmp = tmp.substring(index1, tmp.length);
		var index2 = tmp.indexOf("=", 0) + 1;
		var index3 = tmp.indexOf(";", index2);
		return(unescape(tmp.substring(index2,index3)));
	}
	return("");
}

function SetCookie(key, val){
	document.cookie = key + "=" + escape(val) + ";expires=Fri, 31-Dec-2030 23:59:59;";
}

