var alt = new Array();
var url = new Array();
var img = new Array();

alt[0] = "サブリナ";					//代替テキスト
url[0] = "http://www.otuka.co.jp/EC/Html/B24401.html";		//表示URL
img[0] = "http://e-wear.jp/wp-content/themes/original/goods/3_01.gif";					//表示画像

alt[1] = "ピエ・ド・グラス";					//代替テキスト
url[1] = "http://www.otuka.co.jp/EC/Html/B31901.html";		//表示URL
img[1] = "http://e-wear.jp/wp-content/themes/original/goods/3_02.gif";					//表示画像

alt[2] = "IFFI　イフィー";					//代替テキスト
url[2] = "http://www.otuka.co.jp/EC/html/B26201.html";		//表示URL
img[2] = "http://e-wear.jp/wp-content/themes/original/goods/3_03.gif";					//表示画像

alt[3] = "Tuche";					//代替テキスト
url[3] = "http://www.otuka.co.jp/EC/html/B23801.html";		//表示URL
img[3] = "http://e-wear.jp/wp-content/themes/original/goods/3_04.gif";					//表示画像

alt[4] = "赤い下着以心伝心";					//代替テキスト
url[4] = "http://www.otuka.co.jp/EC/html/B41501.html";		//表示URL
img[4] = "http://e-wear.jp/wp-content/themes/original/goods/3_05.gif";					//表示画像

alt[5] = "グンゼ　ピュアケア";					//代替テキスト
url[5] = "http://www.otuka.co.jp/EC/Html/B22401.html";		//表示URL
img[5] = "http://e-wear.jp/wp-content/themes/original/goods/3_06.gif";					//表示画像

alt[6] = "サーモキッス";					//代替テキスト
url[6] = "http://www.otuka.co.jp/EC/Html/B3201.html";		//表示URL
img[6] = "http://e-wear.jp/wp-content/themes/original/goods/3_07.gif";					//表示画像

alt[7] = "ゲルマニウム繊維の彩華";					//代替テキスト
url[7] = "http://www.otuka.co.jp/EC/html/B32201.html";		//表示URL
img[7] = "http://e-wear.jp/wp-content/themes/original/goods/3_08.gif";					//表示画像

alt[8] = "楓花";					//代替テキスト
url[8] = "http://www.otuka.co.jp/EC/html/B24501.html";		//表示URL
img[8] = "http://e-wear.jp/wp-content/themes/original/goods/3_09.gif";					//表示画像

alt[9] = "KG　GIRL’S ";					//代替テキスト
url[9] = "http://www.otuka.co.jp/EC/html/B29001.html";		//表示URL
img[9] = "http://e-wear.jp/wp-content/themes/original/goods/3_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>');
