// 投稿者名別アイコン表示
function getCommentNameImageTag(userName) {
// 投稿者名ごとの画像のURL定義
// ['(投稿者名)', '(画像のURL)']
var userImages = [
['コダミタカ', 'http://koda.jugem.cc/?image=33'], 
['[Diary]日常', 'http://koda.jugem.cc/?image=1830'], 
['[Diary]日常(写真附)', 'http://koda.jugem.cc/?image=1853'], 
['[Diary]日常(ケータイ)', 'http://koda.jugem.cc/?image=1903'], 
['[Diary]本', 'http://koda.jugem.cc/?image=1831'], 
['[Diary]読書', 'http://koda.jugem.cc/?image=1831'], 
['[Diary]テレビ', 'http://koda.jugem.cc/?image=1832'], 
['[Diary]ドラマ・映画', 'http://koda.jugem.cc/?image=1832'], 
['[Diary]音楽', 'http://koda.jugem.cc/?image=1832'], 
['[Diary]ニュース2004', 'http://koda.jugem.cc/?image=1829'], 
['[Diary]ニュース2005', 'http://koda.jugem.cc/?image=1829'], 
['[Diary]ニュース2006', 'http://koda.jugem.cc/?image=1829'], 
['[Diary]ニュース2007', 'http://koda.jugem.cc/?image=1829'], 
['[Diary]臨時・ゲーム', 'http://koda.jugem.cc/?image=1854'], 
['[ドラマ]Index', 'http://koda.jugem.cc/?image=1858'], 
['[ドラマ]Topic', 'http://koda.jugem.cc/?image=1832'],
['[ドラマ]Memo', 'http://koda.jugem.cc/?image=1832'],
['[ドラマ]Music', 'http://koda.img.jugem.jp/20060126_112451.gif'], 
['[書籍]Index', 'http://koda.jugem.cc/?image=1858'], 
['[書籍]ミステリー', 'http://koda.jugem.cc/?image=1860'], 
['[書籍]ファンタジー', 'http://koda.jugem.cc/?image=1859'], 
['[書籍]ラノベ', 'http://koda.jugem.cc/?image=1964'], 
['[書籍]BL', 'http://koda.jugem.cc/?image=1863'], 
['[書籍]他小説', 'http://koda.jugem.cc/?image=1861'], 
['[書籍]他', 'http://koda.jugem.cc/?image=1865'], 
['[漫画]Index', 'http://koda.jugem.cc/?image=1858'], 
['[漫画]青年・少年', 'http://koda.jugem.cc/?image=1864'], 
['[漫画]少女', 'http://koda.jugem.cc/?image=1862'], 
['[漫画]BL', 'http://koda.jugem.cc/?image=1863'], 
['[Web]BlogPeople', 'http://koda.jugem.cc/?image=1857'], 
['[Web]CGI/PHP', 'http://koda.jugem.cc/?image=1855'], 
['[Web]JUGEM/Blog', 'http://koda.jugem.cc/?image=1856'], 
['[Web]メンテナンス情報', 'http://koda.jugem.cc/?image=1854'], 
['[Web]Topic', 'http://koda.img.jugem.jp/20060602_185335.gif'],
['[モータースポーツ]Result', 'http://koda.jugem.cc/?image=1866'],
['[モータースポーツ]Topic', 'http://koda.jugem.cc/?image=1867']
];

// 上記投稿者名以外に表示する画像のURL
var otherImage = 'http://koda.jugem.cc/?image=67';

// imgタグに指定する属性
// 例）var addAttribute = 'class="pict" alt="test"';
var addAttribute = 'class="pict" style="vertical-align:middle" alt="icon"';

if ('' == userName) {
if ('' != otherImage) document.write('<img src="'+ otherImage +'" ' + addAttribute + ' \/>');
return;
}
if (userName.indexOf('<\/a>') > -1) {
var m = userName.match(/>.+<\/a>/i);
if (null != m) userName = m[0].substr(1, m[0].length - 5);
}
for (var i = 0; i < userImages.length; i++) {
if (userImages[i][0] == userName) {
window.document.write('<img src="' + userImages[i][1] + '" ' + addAttribute + ' \/>');
return;
}
}
if ('' != otherImage) window.document.write('<img src="'+ otherImage +'" ' + addAttribute + ' \/>');
return;
}
//
