﻿//------------------------------------------------------------------------------------------------------------
//RandomRank1設定---売れ筋アイテム一番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定 --- 編集はここだけでOK
var randomRank1ImgList = [
    [ "images/rank/pickup_01.jpg", "デザイナーズブランド","ジェニファーテイラー ブロデリック クッション(acg-2060-615621)", "http://www.aks-mall.com/shop/022florence/#2205" ] ,
	[ "images/rank/201201/024_0001.jpg", "厳選されたニュージーランド産のマヌカハニー入り１００％生搾り無添加ノニジュース！","ナノカノニジュース", "http://www.aks-mall.com/shop/024nanokanoni/#2401" ] ,
    [ "images/rank/201201/032_0003.jpg", "サルナシの蔓や葉を100%使用し、じっくり焙煎しました。ご家族の美容や健康維持に。","焙煎こくわの葉茶", "http://www.aks-mall.com/shop/032sarunashi/#3203" ] ,
    [ "images/rank/201201/046_0005.jpg", "子供たちにライト感覚でエコ教育をするためのセット商品。","ミスターフレンドリー", "http://www.aks-mall.com/shop/046kids-edison/#4605" ] ,
    [ "images/rank/201201/047_0001.jpg", "存在感と安定感が充分にある上品なフレーム付きプリザーブドフラワー。","プリザーブドフラワーギフト101", "http://www.aks-mall.com/shop/047happy-happa/#4701" ]
];
//HTML生成
function RandomRank1() {
// ランダム表示変数
var RandomRankNum1 = Math.floor(Math.random() * randomRank1ImgList.length);
// 出力タグ生成用変数
var RandomRankOutput1 = 
    '<p><a href="' + randomRank1ImgList[RandomRankNum1][3] + '">' + '<img src="' + randomRank1ImgList[RandomRankNum1][0] + '"' + ' alt="' + randomRank1ImgList[RandomRankNum1][2] + '" width="60" height="70"></a></p>' +
    '<div class="rank_text">' + randomRank1ImgList[RandomRankNum1][1] + '<a href="' + randomRank1ImgList[RandomRankNum1][3] + '"><strong>' + randomRank1ImgList[RandomRankNum1][2] + '</strong></a></div>';
// 出力
document.write(RandomRankOutput1);
}


//------------------------------------------------------------------------------------------------------------
//RandomRank2設定---売れ筋アイテム二番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRank2ImgList = [
    [ "images/rank/201106/032_0001.jpg", "魚沼産無農薬サルナシの栄養素をギュッと凝縮したサプリメント","スッキリ爽快サルナシ", "http://www.aks-mall.com/shop/032sarunashi/#3202" ] ,
	[ "images/rank/pickup_02.jpg", "愛媛大三島から産地直送！無添加・無加糖の","みかんジュース3種類セット", "http://www.aks-mall.com/shop/034horitaya/#s1103" ] ,
    [ "images/rank/010_0005.jpg", "八角総籠目の模様は伝統とモダンが融合したデザイングラス。日本酒好きな方への贈り物に。","ぐいのみペアグラス", "http://www.aks-mall.com/shop/010ojima/#s1005" ] ,
    [ "images/rank/201201/003_0008.jpg", "大人気ディズニーキャラクター ドナルドのおむつケーキ！","ドナルド No108", "http://www.aks-mall.com/shop/003yayoi/#s0308" ] ,
    [ "images/rank/201201/016_0009.jpg", "男性の方に人気の作品です。プレゼントにいかがですか？","若さま しのぎマグカップ", "http://www.aks-mall.com/shop/016yamani/#1809" ]
];
//HTML生成
function RandomRank2() {
// ランダム表示変数
var RandomRankNum2 = Math.floor(Math.random() * randomRank2ImgList.length);
// 出力タグ生成用変数
var RandomRankOutput2 = 
    '<p><a href="' + randomRank2ImgList[RandomRankNum2][3] + '">' + '<img src="' + randomRank2ImgList[RandomRankNum2][0] + '"' + ' alt="' + randomRank2ImgList[RandomRankNum2][2] + '" width="60" height="70"></a></p>' +
    '<div class="rank_text">' + randomRank2ImgList[RandomRankNum2][1] + '<a href="' + randomRank2ImgList[RandomRankNum2][3] + '"><strong>' + randomRank2ImgList[RandomRankNum2][2] + '</strong></a></div>';
// 出力
document.write(RandomRankOutput2);
}


//------------------------------------------------------------------------------------------------------------
//RandomRank3設定---売れ筋アイテム三番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRank3ImgList = [
    [ "images/rank/015_0011.jpg", "★形がかわいい信楽焼のアロマランプで癒しの時間を…★","信楽焼アロマランプ", "http://www.aks-mall.com/shop/015mikura/#1517" ] ,
	[ "images/rank/201201/017_0001.jpg", "バルーンペットでお家がにぎやかに！一緒にお散歩しよう♪","エアウォーカー", "http://www.aks-mall.com/shop/017fusentown/#1701" ] ,
    [ "images/rank/017_0004_01.jpg", "小さなアートバルーン花束で、大きなサプライズとハッピーを届け♪","小さな恋のブーケ", "http://www.aks-mall.com/shop/017fusentown/#1704" ] ,
    [ "images/rank/025_0002.jpg", "革の編みこみやかがりなど、手作業のハンドクラフト感をいかしたデザインバッグ。","C-021 2wayバッグ", "http://www.aks-mall.com/shop/005kiyokawa/#s0506" ] ,
    [ "images/rank/201201/020_0002.jpg", "花柄がおしゃれ♪毎日持ち歩くスッテキはお気に入りの柄で☆","アルミステッキ布張加工 折りたたみ", "http://www.aks-mall.com/shop/020segawa/#2002" ]
];
//HTML生成
function RandomRank3() {
// ランダム表示変数
var RandomRankNum3 = Math.floor(Math.random() * randomRank3ImgList.length);
// 出力タグ生成用変数
var RandomRankOutput3 = 
    '<p><a href="' + randomRank3ImgList[RandomRankNum3][3] + '">' + '<img src="' + randomRank3ImgList[RandomRankNum3][0] + '"' + ' alt="' + randomRank3ImgList[RandomRankNum3][2] + '" width="60" height="70"></a></p>' +
    '<div class="rank_text">' + randomRank3ImgList[RandomRankNum3][1] + '<a href="' + randomRank3ImgList[RandomRankNum3][3] + '"><strong>' + randomRank3ImgList[RandomRankNum3][2] + '</strong></a></div>';
// 出力
document.write(RandomRankOutput3);
}


//------------------------------------------------------------------------------------------------------------
//RandomRank4設定---売れ筋アイテム四番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRank4ImgList = [
    [ "images/rank/201201/041_0008.jpg", "コーヒーなどのお茶菓子にぴったりです。","メレンゲセット", "http://www.aks-mall.com/shop/041commealamaison/#s1108" ] ,
	[ "images/rank/201201/045_0002.jpg", "土作り･にんにく栽培・黒にんにくへの熟成と京都で一貫生産！","京丹後産フルーツガーリック", "http://www.aks-mall.com/shop/045happy-vegetable/#s1102" ] ,
    [ "images/rank/201110/028_0005_01.jpg", "いしくら自然農園の無農薬こだわってるジャム ","こだわってるジャム プラム", "http://www.aks-mall.com/shop/028ishikura/#2805" ] ,
    [ "images/rank/201106/005_0001_camel.jpg", "日本製の牛革を使った美しい表情のバッグです。","AZ-024 2wayトートバッグ", "http://www.aks-mall.com/shop/005kiyokawa/#s0501" ] ,
    [ "images/rank/201201/053_0002.jpg", "ヨーロッパで大人気の指で塗るぬりえです！","フィンガーペイント", "http://www.aks-mall.com/shop/046kids-edison/#4604" ]
];
//HTML生成
function RandomRank4() {
// ランダム表示変数
var RandomRankNum4 = Math.floor(Math.random() * randomRank4ImgList.length);
// 出力タグ生成用変数
var RandomRankOutput4 = 
    '<p><a href="' + randomRank4ImgList[RandomRankNum4][3] + '">' + '<img src="' + randomRank4ImgList[RandomRankNum4][0] + '"' + ' alt="' + randomRank4ImgList[RandomRankNum4][2] + '" width="60" height="70"></a></p>' +
    '<div class="rank_text">' + randomRank4ImgList[RandomRankNum4][1] + '<a href="' + randomRank4ImgList[RandomRankNum4][3] + '"><strong>' + randomRank4ImgList[RandomRankNum4][2] + '</strong></a></div>';
// 出力
document.write(RandomRankOutput4);
}


//------------------------------------------------------------------------------------------------------------
//RandomRank5設定---売れ筋アイテム五番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRank5ImgList = [
    [ "images/rank/201201/044_0001.jpg", "お誕生日や結婚式の記念品としてもお勧めです。","サークル・ストラップ", "http://www.aks-mall.com/shop/044hauolin/#1801" ] ,
	[ "images/rank/201106/013_0001.jpg", "高品質！鋳物製の鉄鍋は、使い込むほどにお料理が美味しくなります。","焼きグルメお好み鉄板", "http://www.aks-mall.com/shop/013uai/#1302" ] ,
    [ "images/rank/DSC_0102.jpg", "着物を着るなら肌着は必需品！春夏は汗を吸い取り、秋冬は保温効果が期待できます。","ベンベルグ肌着", "http://www.aks-mall.com/shop/001ichikawa/#0001" ] ,
    [ "images/rank/201110/macaron_07.jpg", "外はさくっと、中はしっとりしたシェフの得意なマカロン10種類のセットです。","マカロンセット（１０個）", "http://www.aks-mall.com/shop/041commealamaison/#s1103" ] ,
    [ "images/rank/201106/031_0004.jpg", "減農薬有機質肥料で栽培した梨を原材料とした無添加ストレートジュース","芳賀一笑（梨ジュース）", "http://www.aks-mall.com/shop/031kaneda/#s1104" ]
];
//HTML生成
function RandomRank5() {
// ランダム表示変数
var RandomRankNum5 = Math.floor(Math.random() * randomRank5ImgList.length);
// 出力タグ生成用変数
var RandomRankOutput5 = 
    '<p><a href="' + randomRank5ImgList[RandomRankNum5][3] + '">' + '<img src="' + randomRank5ImgList[RandomRankNum5][0] + '"' + ' alt="' + randomRank5ImgList[RandomRankNum5][2] + '" width="60" height="70"></a></p>' +
    '<div class="rank_text">' + randomRank5ImgList[RandomRankNum5][1] + '<a href="' + randomRank5ImgList[RandomRankNum5][3] + '"><strong>' + randomRank5ImgList[RandomRankNum5][2] + '</strong></a></div>';
// 出力
document.write(RandomRankOutput5);
}



//------------------------------------------------------------------------------------------------------------
//RandomRecomemd1設定---おすすめ商品一番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRecomemd1ImgList = [
    [ "images/recomemd/201201/013_0001.jpg", "鋳物製の鉄鍋は、油分を吸収し使い込むほどにお料理が美味しくなります。","【鋳物製お好み焼き鉄板】", "http://www.aks-mall.com/shop/013uai/#1302","shop/013uai/" ] ,
    [ "images/recomemd/006_0001.jpg", "★ピンクのお花がガーリーな髪飾りはシンプルな格好に華やかさをプラスします★","【花コーム 桃系】", "http://www.aks-mall.com/shop/006fumoto/#0601","shop/006fumoto/" ] ,    
    [ "images/recomemd/010_0005.jpg", "在庫1点のみ！伝統的な菊つなぎと三方に矢来を組み合わせた模様のオールドグラスです。","【オールドグラスC】", "http://www.aks-mall.com/shop/010ojima/#s1008","shop/010ojima/" ] ,
    [ "images/recomemd/010_0009.jpg", "伝統工芸士いづみけん氏の原点作品です。","【般若心経ブレス】", "http://www.aks-mall.com/shop/012ginsen/#1211","shop/012ginsen/" ]
];
//HTML生成
function RandomRecomemd1() {
// ランダム表示変数
var RandomRecomemdNum1 = Math.floor(Math.random() * randomRecomemd1ImgList.length);
// 出力タグ生成用変数
var RandomRecomemdOutput1 = 
    '<a href="' + randomRecomemd1ImgList[RandomRecomemdNum1][3] + '"><img src="' + randomRecomemd1ImgList[RandomRecomemdNum1][0] + '" alt="' + randomRecomemd1ImgList[RandomRecomemdNum1][2] + '" width="80" height="55" /></a>' +
    '<p><span class="text_decoration"><a href="' + randomRecomemd1ImgList[RandomRecomemdNum1][3] + '">' + randomRecomemd1ImgList[RandomRecomemdNum1][2] + '</a><br /></span>' +
    '<span class="text"><a href="' + randomRecomemd1ImgList[RandomRecomemdNum1][4] + '">' + randomRecomemd1ImgList[RandomRecomemdNum1][1] + '</a></span></p>';
// 出力
document.write(RandomRecomemdOutput1);
}


//------------------------------------------------------------------------------------------------------------
//RandomRecomemd2設定---おすすめ商品二番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRecomemd2ImgList = [
    [ "images/recomemd/!DSC_0245.jpg", "お箸に名前やメッセージを入れれば、世界に1つだけのオリジナルギフト","【名入れ箸 京友禅】", "http://www.aks-mall.com/shop/015mikura/#1501","shop/015mikura/" ] ,
    [ "images/recomemd/014_0001.jpg", "本体の底に爪とぎがセットされ、とぎカスが散らばりません。","【ねこ缶風ダンボール】", "http://www.aks-mall.com/shop/014furukawa/#1401","shop/014furukawa/" ] ,    
    [ "images/recomemd/015_0006.jpg", "職人が1つ1つ丁寧に焼き上げた器です。デザート器としてもお洒落です！","【信楽焼カップ】", "http://www.aks-mall.com/shop/015mikura/#1507","shop/015mikura/" ]     
];
//HTML生成
function RandomRecomemd2() {
// ランダム表示変数
var RandomRecomemdNum2 = Math.floor(Math.random() * randomRecomemd2ImgList.length);
// 出力タグ生成用変数
var RandomRecomemdOutput2 = 
    '<a href="' + randomRecomemd2ImgList[RandomRecomemdNum2][3] + '"><img src="' + randomRecomemd2ImgList[RandomRecomemdNum2][0] + '" alt="' + randomRecomemd2ImgList[RandomRecomemdNum2][2] + '" width="80" height="55" /></a>' +
    '<p><span class="text_decoration"><a href="' + randomRecomemd2ImgList[RandomRecomemdNum2][3] + '">' + randomRecomemd2ImgList[RandomRecomemdNum2][2] + '</a><br /></span>' +
    '<span class="text"><a href="' + randomRecomemd2ImgList[RandomRecomemdNum2][4] + '">' + randomRecomemd2ImgList[RandomRecomemdNum2][1] + '</a></span></p>';
// 出力
document.write(RandomRecomemdOutput2);
}


//------------------------------------------------------------------------------------------------------------
//RandomRecomemd3設定---おすすめ商品三番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRecomemd3ImgList = [
    [ "images/recomemd/028_0002_01.jpg", "余計なものは一切無し。お子様にも安心してお召し上がりいただけます。","【こだわってるジャム】", "http://www.aks-mall.com/shop/028ishikura/#2802","shop/028ishikura/" ] ,
    [ "images/recomemd/201201/018_0001.jpg", "手に持ったときの手触り感、バッグに入れたときの絶妙なサイズ。","【プリマ(リフィル付)】", "http://www.aks-mall.com/shop/018sawakoubou/#1801","shop/018sawakoubou/" ] ,
	[ "images/recomemd/014_0006.jpg", "お子様の工作・手軽な趣味・新しいコミュニケーションツールです。","【クラフトクラブライト】", "http://www.aks-mall.com/shop/014furukawa/#1404","shop/014furukawa/" ]  
];
//HTML生成
function RandomRecomemd3() {
// ランダム表示変数
var RandomRecomemdNum3 = Math.floor(Math.random() * randomRecomemd3ImgList.length);
// 出力タグ生成用変数
var RandomRecomemdOutput3 = 
    '<a href="' + randomRecomemd3ImgList[RandomRecomemdNum3][3] + '"><img src="' + randomRecomemd3ImgList[RandomRecomemdNum3][0] + '" alt="' + randomRecomemd3ImgList[RandomRecomemdNum3][2] + '" width="80" height="55" /></a>' +
    '<p><span class="text_decoration"><a href="' + randomRecomemd3ImgList[RandomRecomemdNum3][3] + '">' + randomRecomemd3ImgList[RandomRecomemdNum3][2] + '</a><br /></span>' +
    '<span class="text"><a href="' + randomRecomemd3ImgList[RandomRecomemdNum3][4] + '">' + randomRecomemd3ImgList[RandomRecomemdNum3][1] + '</a></span></p>';
// 出力
document.write(RandomRecomemdOutput3);
}


//------------------------------------------------------------------------------------------------------------
//RandomRecomemd4設定---おすすめ商品四番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRecomemd4ImgList = [
    [ "images/recomemd/029_0003_main.jpg", "極上いちごをたっぷり使用した自然の美味しさを閉じ込めた贅沢なお菓子です。","【苺生キャラメル】", "http://www.aks-mall.com/shop/029minagawa/#1103","shop/029minagawa/" ] ,
    [ "images/recomemd/016_0005.jpg", "作家オリジナルの益子焼です。大人の男性に贈るプレゼントとして最適です。","【日本酒晩酌セット】", "http://www.aks-mall.com/shop/016yamani/#1803","shop/016yamani/" ],    
    [ "images/recomemd/201201/016_0006.jpg", "「夕顔（ゆうがお）」をイメージして作られた、優雅な大きめの花瓶です。","【Jazz工房 夕顔花入れ】", "http://www.aks-mall.com/shop/016yamani/#1803","shop/016yamani/" ]     
];
//HTML生成
function RandomRecomemd4() {
// ランダム表示変数
var RandomRecomemdNum4 = Math.floor(Math.random() * randomRecomemd4ImgList.length);
// 出力タグ生成用変数
var RandomRecomemdOutput4 = 
    '<a href="' + randomRecomemd4ImgList[RandomRecomemdNum4][3] + '"><img src="' + randomRecomemd4ImgList[RandomRecomemdNum4][0] + '" alt="' + randomRecomemd4ImgList[RandomRecomemdNum4][2] + '" width="80" height="55" /></a>' +
    '<p><span class="text_decoration"><a href="' + randomRecomemd4ImgList[RandomRecomemdNum4][3] + '">' + randomRecomemd4ImgList[RandomRecomemdNum4][2] + '</a><br /></span>' +
    '<span class="text"><a href="' + randomRecomemd4ImgList[RandomRecomemdNum4][4] + '">' + randomRecomemd4ImgList[RandomRecomemdNum4][1] + '</a></span></p>';
// 出力
document.write(RandomRecomemdOutput4);
}


//------------------------------------------------------------------------------------------------------------
//RandomRecomemd5設定---おすすめ商品五番目の商品用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomRecomemd5ImgList = [
    [ "images/recomemd/047_0004_a.jpg", "クリアトップがほこりから大切なお花を守ってくれます。贈り物にどうぞ。","【プリザーブドフラワー】", "http://www.aks-mall.com/shop/047happy-happa/#4704","shop/047happy-happa/" ] ,
    [ "images/recomemd/026_0010.jpg", "無加糖・無添加100％ジュースと完熟果汁100％のりんご・ぶどうゼリーの詰合せのセット。","【りんごジュース宇都宮ふるふる詰合せ】", "http://www.aks-mall.com/shop/026aramaki/#s1101","shop/026aramaki/" ] ,
	[ "images/recomemd/201201/017_0010.jpg", "お誕生日祝い・出産祝いにピッタリ！アートバルーンの贈り物","【ベイビー・バギー】", "http://www.aks-mall.com/shop/017fusentown/#1710","shop/017fusentown/" ] 
];
//HTML生成
function RandomRecomemd5() {
// ランダム表示変数
var RandomRecomemdNum5 = Math.floor(Math.random() * randomRecomemd5ImgList.length);
// 出力タグ生成用変数
var RandomRecomemdOutput5 = 
    '<a href="' + randomRecomemd5ImgList[RandomRecomemdNum5][3] + '"><img src="' + randomRecomemd5ImgList[RandomRecomemdNum5][0] + '" alt="' + randomRecomemd5ImgList[RandomRecomemdNum5][2] + '" width="80" height="55" /></a>' +
    '<p><span class="text_decoration"><a href="' + randomRecomemd5ImgList[RandomRecomemdNum5][3] + '">' + randomRecomemd5ImgList[RandomRecomemdNum5][2] + '</a><br /></span>' +
    '<span class="text"><a href="' + randomRecomemd5ImgList[RandomRecomemdNum5][4] + '">' + randomRecomemd5ImgList[RandomRecomemdNum5][1] + '</a></span></p>';
// 出力
document.write(RandomRecomemdOutput5);
}



//------------------------------------------------------------------------------------------------------------
//RandomShop1設定---人気のある店舗一番目の店舗用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomShop1ImgList = [
    [ "images/shop/index_y.jpg", "他では売っていない当店オリジナルの粋な硝子札にはお好きな文字や名前を彫ることが可能です。","【夢工房】", "http://www.aks-mall.com/shop/021yumekoubou/"] ,
    [ "images/shop/index_z.jpg", "伝統工芸士いづみけん氏によるオリジナル アクセサリー販売ショップ","【銀泉いづみけん】", "http://www.aks-mall.com/shop/012ginsen/"] ,
    [ "images/shop/index_k.jpg", "乳幼児から、ご年配の方まで、安心してご愛飲できる100％純粋りんごジュースを販売しています。","【荒牧りんご園】", "http://www.aks-mall.com/shop/026aramaki/"] 
];
//HTML生成
function RandomShop1() {
// ランダム表示変数
var RandomShopNum1 = Math.floor(Math.random() * randomShop1ImgList.length);
// 出力タグ生成用変数
var RandomShopOutput1 = 
    '<a href="' + randomShop1ImgList[RandomShopNum1][3] + '"><img src="' + randomShop1ImgList[RandomShopNum1][0] + '" alt="' + randomShop1ImgList[RandomShopNum1][2] + '" width="100" height="133" /></a>' +
    '<span class="text"><a href="' + randomShop1ImgList[RandomShopNum1][3] + '"><strong>' + randomShop1ImgList[RandomShopNum1][2] + '</strong>' + randomShop1ImgList[RandomShopNum1][1] + '</a></span>';
// 出力
document.write(RandomShopOutput1);
}


//------------------------------------------------------------------------------------------------------------
//RandomShop2設定---人気のある店舗二番目の店舗用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomShop2ImgList = [
    [ "images/shop/index_m.jpg", "当店で扱う商品はSGマーク認定商品や日本製など高品質なスッテキを多数取り扱っております。","【ステッキの専門家】", "http://www.aks-mall.com/shop/020segawa/"] ,
    [ "images/shop/index_n.jpg", "甘みと香りが豊かで、酸味は控えめの極上いちごや苺を使用したデザートを販売しています。","【皆川農園】", "http://www.aks-mall.com/shop/029minagawa/"] ,
    [ "images/shop/index_o.jpg", "浅草かっぱ橋で唯一のインテリア小物や縁起物などを扱っているお店です。","【オルネコイデ】", "http://www.aks-mall.com/shop/007koide/"] 
];
//HTML生成
function RandomShop2() {
// ランダム表示変数
var RandomShopNum2 = Math.floor(Math.random() * randomShop2ImgList.length);
// 出力タグ生成用変数
var RandomShopOutput2 = 
    '<a href="' + randomShop2ImgList[RandomShopNum2][3] + '"><img src="' + randomShop2ImgList[RandomShopNum2][0] + '" alt="' + randomShop2ImgList[RandomShopNum2][2] + '" width="100" height="133" /></a>' +
    '<span class="text"><a href="' + randomShop2ImgList[RandomShopNum2][3] + '"><strong>' + randomShop2ImgList[RandomShopNum2][2] + '</strong>' + randomShop2ImgList[RandomShopNum2][1] + '</a></span>';
// 出力
document.write(RandomShopOutput2);
}


//------------------------------------------------------------------------------------------------------------
//RandomShop3設定---人気のある店舗三番目の店舗用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomShop3ImgList = [
    [ "images/shop/index_r.jpg", "カラーセラピーにも通じるハワイアンリボンストラップ販売ショップ","【ハウオリン】", "http://www.aks-mall.com/shop/044hauolin/"] ,
    [ "images/shop/index_q.jpg", "1937年東京・浅草で創業より、日本舞踊の貸衣裳、着付業の老舗です。","【和装肌着いちかわ】", "http://www.aks-mall.com/shop/001ichikawa/"] ,
    [ "images/shop/index_t.jpg", "うさぎをメインとした雑貨を扱う。他では手に入らないアイテム多数あります。","【パールラビット】", "http://www.aks-mall.com/shop/004pearlrabbit/"] 
];
//HTML生成
function RandomShop3() {
// ランダム表示変数
var RandomShopNum3 = Math.floor(Math.random() * randomShop3ImgList.length);
// 出力タグ生成用変数
var RandomShopOutput3 = 
    '<a href="' + randomShop3ImgList[RandomShopNum3][3] + '"><img src="' + randomShop3ImgList[RandomShopNum3][0] + '" alt="' + randomShop3ImgList[RandomShopNum3][2] + '" width="100" height="133" /></a>' +
    '<span class="text"><a href="' + randomShop3ImgList[RandomShopNum3][3] + '"><strong>' + randomShop3ImgList[RandomShopNum3][2] + '</strong>' + randomShop3ImgList[RandomShopNum3][1] + '</a></span>';
// 出力
document.write(RandomShopOutput3);
}


//------------------------------------------------------------------------------------------------------------
//RandomShop4設定---人気のある店舗四番目の店舗用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomShop4ImgList = [
    [ "images/shop/index_u.jpg", "創業１９６０年。素材を厳選したバッグはデザイン・品性・機能全てが高質です。","【革バッグ工房KIYOKAWA】", "http://www.aks-mall.com/shop/005kiyokawa/"] ,
    [ "images/shop/index_v.jpg", "全て国産食材にこだわり、栃木県産の有機野菜を使用した餃子販売店舗。にんにく、ニラを使わない餃子もあります。","【宇都宮餃子さつき】", "http://www.aks-mall.com/shop/043satsuki/"] ,
    [ "images/shop/index_x.jpg", "安心・安全な無農薬やできるだけ農薬を使わない野菜を京都よりお届けいたします。","【ハッピーベジタブル】", "http://www.aks-mall.com/shop/045happy-vegetable/"] 
];
//HTML生成
function RandomShop4() {
// ランダム表示変数
var RandomShopNum4 = Math.floor(Math.random() * randomShop4ImgList.length);
// 出力タグ生成用変数
var RandomShopOutput4 = 
    '<a href="' + randomShop4ImgList[RandomShopNum4][3] + '"><img src="' + randomShop4ImgList[RandomShopNum4][0] + '" alt="' + randomShop4ImgList[RandomShopNum4][2] + '" width="100" height="133" /></a>' +
    '<span class="text"><a href="' + randomShop4ImgList[RandomShopNum4][3] + '"><strong>' + randomShop4ImgList[RandomShopNum4][2] + '</strong>' + randomShop4ImgList[RandomShopNum4][1] + '</a></span>';
// 出力
document.write(RandomShopOutput4);
}


//------------------------------------------------------------------------------------------------------------
//RandomShop5設定---人気のある店舗五番目の店舗用
//------------------------------------------------------------------------------------------------------------
// 画像・URLリスト配列設定
var randomShop5ImgList = [
    [ "images/shop/index_s.jpg", "完全手作り、自然で素朴な味わいをお届けいたします。","【大くら家】", "http://www.aks-mall.com/shop/036ookuraya/"] ,
    [ "images/shop/index_l.jpg", "古布を現代のセンスで、バッグやアクセサリーなどにリメイクしたオリジナル商品が多数あります。","【古布手づくり工房 布もと】", "http://www.aks-mall.com/shop/006fumoto/"] ,
    [ "images/shop/index_a2.jpg", "現地の職人さんがこだわってつくった世界でたったひとつのアジアンインテリア&nbsp;雑貨ばかりです。","【ASIWAN】", "http://www.aks-mall.com/shop/008asiwan/"] 
];
//HTML生成
function RandomShop5() {
// ランダム表示変数
var RandomShopNum5 = Math.floor(Math.random() * randomShop5ImgList.length);
// 出力タグ生成用変数
var RandomShopOutput5 = 
    '<a href="' + randomShop5ImgList[RandomShopNum5][3] + '"><img src="' + randomShop5ImgList[RandomShopNum5][0] + '" alt="' + randomShop5ImgList[RandomShopNum5][2] + '" width="100" height="133" /></a>' +
    '<span class="text"><a href="' + randomShop5ImgList[RandomShopNum5][3] + '"><strong>' + randomShop5ImgList[RandomShopNum5][2] + '</strong>' + randomShop5ImgList[RandomShopNum5][1] + '</a></span>';
// 出力
document.write(RandomShopOutput5);
}

