// JavaScript Document

$(function(){
	var url = ($.cookie("color"));
	if(url != null){
		switchColor(url);
	}
	$('button','#switch_color ul li:nth-child(1)').click(function(){
		switchColor('http://aosyakyo.or.jp/css/dummy.css');
	});
	$('button','#switch_color ul li:nth-child(2)').click(function(){
		switchColor('http://aosyakyo.or.jp/css/kikuro.css');
	});
	$('button','#switch_color ul li:nth-child(3)').click(function(){
		switchColor('http://aosyakyo.or.jp/css/kiao.css');
	});
	$('button','#switch_color ul li:nth-child(4)').click(function(){
		switchColor('http://aosyakyo.or.jp/css/aoki.css');
	});
});

function switchColor(name){
	$("#css").attr({href:name});
	$.cookie("color",name,{path:'/',expires:1});
}
