/*cssを変更し、cookieに記録する(30日間)*/// cookieの取得style_ck=$.cookie('style');// style_ckがnull出ない場合、#styleControlのhref属性を置き換え（cssの指定）if(style_ck != null) {$(function(){$("#styleControl").attr({href:$.cookie('style')});});}// 切り替えボタン押下時、#styleControlのhref属性を置き換え（cssの指定）、cookieに記録する（30日間）function changcss(cssurl){$('#styleControl').attr({href:cssurl});$.cookie('style',cssurl,{expires:30,path:'/'});}
