var alt = new Array();
var url = new Array();
var img = new Array();

alt[0] = "ＢＯＤＹＷＩＬＤforWOMAN";					//代替テキスト
url[0] = "http://www.otuka.co.jp/EC/html/B21101.html";		//表示URL
img[0] = "http://e-wear.jp/wp-content/themes/original/goods/2_01.gif";					//表示画像

alt[1] = "マイクロ起毛　グンゼ保温肌着";					//代替テキスト
url[1] = "http://www.otuka.co.jp/EC/Html/B3701.html";		//表示URL
img[1] = "http://e-wear.jp/wp-content/themes/original/goods/2_02.gif";					//表示画像

alt[2] = "グンゼやさしさ物語";					//代替テキスト
url[2] = "http://www.otuka.co.jp/EC/html/B39701.html";		//表示URL
img[2] = "http://e-wear.jp/wp-content/themes/original/goods/2_03.gif";					//表示画像

alt[3] = "三ツ桃クレープ　婦人";					//代替テキスト
url[3] = "http://www.otuka.co.jp/EC/html/B36101.html";		//表示URL
img[3] = "http://e-wear.jp/wp-content/themes/original/goods/2_04.gif";					//表示画像

alt[4] = "グンゼクレープ　婦人";					//代替テキスト
url[4] = "http://www.otuka.co.jp/EC/html/B36501.html";		//表示URL
img[4] = "http://e-wear.jp/wp-content/themes/original/goods/2_05.gif";					//表示画像

alt[5] = "グンゼCFA";					//代替テキスト
url[5] = "http://www.otuka.co.jp/EC/Html/B22301.html";		//表示URL
img[5] = "http://e-wear.jp/wp-content/themes/original/goods/2_06.gif";					//表示画像

alt[6] = "快適工房　婦人";					//代替テキスト
url[6] = "http://www.otuka.co.jp/EC/html/B42601.html";		//表示URL
img[6] = "http://e-wear.jp/wp-content/themes/original/goods/2_07.gif";					//表示画像

alt[7] = "INEXIT";					//代替テキスト
url[7] = "http://www.otuka.co.jp/EC/html/B36301.html";		//表示URL
img[7] = "http://e-wear.jp/wp-content/themes/original/goods/2_08.gif";					//表示画像

alt[8] = "さらシャリッ！";					//代替テキスト
url[8] = "http://www.otuka.co.jp/EC/html/B37301.html";		//表示URL
img[8] = "http://e-wear.jp/wp-content/themes/original/goods/2_09.gif";					//表示画像

alt[9] = "あったかアイテム";					//代替テキスト
url[9] = "http://www.otuka.co.jp/EC/Html/B40001.html";		//表示URL
img[9] = "http://e-wear.jp/wp-content/themes/original/goods/2_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>');
