var cssfiles = new Array();
cssfiles[0] = "plain.css";
cssfiles[1] = "white.css";
cssfiles[2] = "black.css";


function cssChange( sel ){
  if( sel.options[sel.selectedIndex].value ){
    setCookie( "CSS", cssfiles[sel.options[sel.selectedIndex].value] );
    window.location.reload();
  }
}


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


/* int 文字列.indexOf( "検索対象文字", [検索開始位置] )
   見つからなければ『-1』を返す。 */

/* string 文字列.substring( n, m )
   n番目の文字からm-1番目の文字まで抜き出す */


function getCookie( key ){
  var temp = document.cookie + ";";
  var index1 = temp.indexOf( key );

  if( index1 != -1 ){
    // 該当結果あり
    temp = temp.substring( index1, temp.length );
    var index2 = temp.indexOf("=") + 1;
    var index3 = temp.indexOf(";",index2);
    return( unescape( temp.substring( index2, index3 ) ) );
  }

  return( "" );
}


var css = getCookie( "CSS" );
if( css != "" ){
  document.write( '<link rel = "stylesheet" href = "http://www.ndoko-the-gurujio.com/blog/' + css + '" type = "text/css" media = "screen,tv,print" />' );
}