(function() {
  var LinkList = [
    { cat:1, uri:'http://nekoare.sakura.ne.jp/', site:'ねこあれるぎ～ さくら', author:'じゅーの' },
    { cat:1, uri:'http://moechronicle.blog60.fc2.com/', site:'萌えクロニクル', author:'katoran' },
    { cat:2, uri:'http://www6.ocn.ne.jp/~katoyuu/', site:'カトゆー家断絶', author:'カトゆー' },
    { cat:1, uri:'http://flicker.jorougumo.com/', site:'魅力的な淫乱ビニールプリンセスらぶりー', author:'ましまろ' },
    { cat:1, uri:'http://www.wa.commufa.jp/~wondrous/', site:'WONDROUS pharmacy', author:'HOSOn' },
    { cat:1, uri:'http://lunareclipse.info/', site:'Lunar Eclipse', author:'力動' },
    { cat:1, uri:'http://seraph.sakura.ne.jp/', site:'Seraphic Steps', author:'しるふぃ' },
    { cat:2, uri:'http://u-u.2-d.jp/', site:'うつらうららか', author:'えれっと' },
    { cat:2, uri:'http://www.cronos.ne.jp/~sumitan/', site:'すぅみぃたん', author:'さとうきび' },
    { cat:1, uri:'http://aoituki.s62.xrea.com/', site:'蒼い月の丘', author:'空乃 夜月' },
    { cat:2, uri:'http://kuri.sakura.ne.jp/~fmo/', site:'裏FMO', author:'フミオ' },
    { cat:1, uri:'http://bellmare.web.fc2.com/', site:'わっふぉ～♪', author:'田宇林' },
    { cat:1, uri:'http://syunkinden.web.fc2.com/', site:'春琴殿', author:'ダチョー' },
    { cat:2, uri:'http://lemlaml.net/', site:'Lemlaml', author:'ONION' },
    { cat:1, uri:'http://automaticdoll.hp.infoseek.co.jp/', site:'夢幻の世界', author:'Aya' },
    { cat:1, uri:'http://plaza.rakuten.co.jp/hokuou/', site:'D of resuceitation', author:'本庄 美風' },
    { cat:1, uri:'http://www7a.biglobe.ne.jp/~diablo_zeta/', site:'BLAZE OF ETERNITY', author:'DZ' },
    { cat:1, uri:'http://trbhp.com/', site:'GAME de LINK', author:'trb' },
    { cat:3, uri:'http://age-soft.co.jp/', site:'age', author:'-' },
    { cat:3, uri:'http://frontwing.jp/', site:'Front wing', author:'-' },
    { cat:3, uri:'http://www.alicesoft.com/', site:'ALICE SOFT', author:'-' },
    { cat:2, uri:'http://mizuno.pekori.to/kuribayashiminami.htm', site:'栗の子ファン', author:'しんさん' },
    { cat:1, uri:'http://hp.puresilk.ac/~zawa87/', site:'GYAN GYAL', author:'Noble' },
    { cat:1, uri:'http://miss.s33.xrea.com/', site:'MSTのススメ', author:'御影 樹璃' },
    { cat:1, uri:'http://www.hinatatiki.sakura.ne.jp/', site:'ひなたきち', author:'ひなちき' },
    { cat:1, uri:'http://www10.ocn.ne.jp/~mojya/', site:'ＴＡＳＴＥ', author:'もじゃ' },
    { cat:1, uri:'http://www.kisweb.ne.jp/personal/toshi_n/game/', site:'GamePlaza-HARUKA-', author:'とし' },
    { cat:1, uri:'http://www.geocities.jp/ainalabyrinth/', site:'アイナのラビリンス', author:'アイナ' },
    { cat:1, uri:'http://www.geocities.jp/kageru1006/', site:'Another Street', author:'kageru' },
    { cat:2, uri:'http://newsbox-of-bod.net/', site:'b_o_dのニュース箱2', author:'b_o_d' },
    { cat:2, uri:'http://blog.livedoor.jp/od3/', site:'ゲーム屋店員の戯言', author:'裕' },
    { cat:2, uri:'http://www.ojakan.com/', site:'ojakan.com', author:'ごろー' },
    { cat:3, uri:'http://www.etude-soft.jp/', site:'etude', author:'-' },
    { cat:2, uri:'http://alice.pepper.jp/', site:'鳥籠', author:'みなせ真夜' },
    { cat:2, uri:'http://jyouhouya3.sakura.ne.jp/', site:'情報屋さん。', author:'KOJE' },
    { cat:2, uri:'http://www.ivesound.jp/', site:'I\'ve Sound Explorer', author:'素馨紫威' },
    { cat:1, uri:'http://mudai.mine.nu/', site:'無題β(閉鎖)', author:'ひろぽん' },
    { cat:1, uri:'http://www.k3.dion.ne.jp/~bookfact/Top.htm', site:'Jamming Book Factory（閉鎖）', author:'KEI' },
    { cat:1, uri:'http://www.h7.dion.ne.jp/~hamany/', site:'kizuna room（閉鎖）', author:'は～ま' },
    { cat:1, uri:'http://nazuxu.blog70.fc2.com/', site:'ちょい萌え日記(閉鎖)', author:'なずぅ' }
  ];
  
  var ucBodyLeft = document.getElementById('links');
  
  var table = document.createElement('table');
  ucBodyLeft.appendChild(table);
  
  for (var i in LinkList) {
    var tr = document.createElement('tr');
    table.appendChild(tr);
    var td1 = document.createElement('td');
    td1.style.paddingBottom = '5px';
    td1.style.width = '450px';
    tr.appendChild(td1);
    var a = document.createElement('a');
    a.href = LinkList[i].uri;
    a.innerHTML = LinkList[i].site;
    td1.appendChild(a);
    var td2 = document.createElement('td');
    td2.innerHTML = LinkList[i].author;
    tr.appendChild(td2);
  }
}());
