var alt = new Array();
var url = new Array();
var img = new Array();

alt[0] = "エアメン";					//代替テキスト
url[0] = "http://www.otuka.co.jp/EC/Html/B801.html";		//表示URL
img[0] = "http://e-wear.jp/wp-content/themes/original/goods/4_01.gif";					//表示画像

alt[1] = "サーモアジャスト";					//代替テキスト
url[1] = "http://www.otuka.co.jp/EC/Html/B101.html";		//表示URL
img[1] = "http://e-wear.jp/wp-content/themes/original/goods/4_02.gif";					//表示画像

alt[2] = "純毛";					//代替テキスト
url[2] = "http://www.otuka.co.jp/EC/Html/B31701.html";		//表示URL
img[2] = "http://e-wear.jp/wp-content/themes/original/goods/4_03.gif";					//表示画像

alt[3] = "ホットマジック";					//代替テキスト
url[3] = "http://www.otuka.co.jp/EC/Html/B401.html";		//表示URL
img[3] = "http://e-wear.jp/wp-content/themes/original/goods/4_04.gif";					//表示画像

alt[4] = "ピバロン　紳士";					//代替テキスト
url[4] = "http://www.otuka.co.jp/EC/Html/B501.html";		//表示URL
img[4] = "http://e-wear.jp/wp-content/themes/original/goods/4_05.gif";					//表示画像

alt[5] = "グンゼクレープ　紳士";					//代替テキスト
url[5] = "http://www.otuka.co.jp/EC/Html/B35601.html";		//表示URL
img[5] = "http://e-wear.jp/wp-content/themes/original/goods/4_06.gif";					//表示画像

alt[6] = "エクスラン ノエール　紳士";					//代替テキスト
url[6] = "http://www.otuka.co.jp/EC/Html/B201.html";		//表示URL
img[6] = "http://e-wear.jp/wp-content/themes/original/goods/4_07.gif";					//表示画像

alt[7] = "シルクトランクス";					//代替テキスト
url[7] = "http://www.otuka.co.jp/EC/Html/B33701.html";		//表示URL
img[7] = "http://e-wear.jp/wp-content/themes/original/goods/4_08.gif";					//表示画像

alt[8] = "シャレテコ";					//代替テキスト
url[8] = "http://www.otuka.co.jp/EC/Html/B35301.html";		//表示URL
img[8] = "http://e-wear.jp/wp-content/themes/original/goods/4_09.gif";					//表示画像

alt[9] = "トラサルディ";					//代替テキスト
url[9] = "http://www.otuka.co.jp/EC/html/B3101.html";		//表示URL
img[9] = "http://e-wear.jp/wp-content/themes/original/goods/4_10.gif";					//表示画像


//表示部分
var n = Math.floor(Math.random() * alt.length);
document.write('<a href="' + url[n] + '" target="_blank">');
document.write('<img src="' + img[n] + '" width="180" height="200" border="0" alt="' + alt[n] + '">');
document.write('</a>');
