﻿// JavaScript Document
$(document).ready(function (){

var arr = [
		   
['獎項','award.png','參閱我們所獲獎項！','Award+Winning.aspx'],

['7百萬人簽名支持！','side_sct.png',"感謝各位簽名支持「遏止兒童及青少年色情人口販賣」運動！我們已於9月29日成功向聯合國移交七百萬簽名。","http://www.thebodyshop.com/_en/_ww/values-campaigns/hongkong/stop-trafficking-sign-hongkongeng-petition-Market.aspx?"],

['肌膚護理指南','promo_skin_care_regime.png','使用我們的肌膚護理指南，找尋最適合你的護膚產品。','skindiagnostic.aspx'],

['皇牌產品','promo_10musthaves.jpg',"立即瀏覽我們的熱賣產品！","http://www.thebodyshop.com.hk/tc/Listing.aspx?SubCateId=16&CateId=10"],

['最新消息','promo_nutriganics.jpg',"體驗Drops of Youth的大自然修復力量。","http://www.thebodyshop.com.hk/tc/Listing.aspx?SubCateId=180&CateId=4"],

['禮品卡','promo_gift.png',"親臨The Body Shop®分店購買禮品卡蒐贈摯愛！","gift_cards.aspx"]

];

arr = shuffle(arr);

function shuffle(arr) {
	for(
		var j, x, i = arr.length; i;
		j = parseInt(Math.random() * i),
		x = arr[--i], arr[i] = arr[j], arr[j] = x
	);
	return arr;
}

$('div.side-content').each(function(index){
	
	$subImg = $(this).find('div.left-img');
	$viewMore = $(this).find('div.view');
	
	//Load
	$(this).find('div.side-title').text(arr[index][0]);
	$(this).find('div.side-text').text(arr[index][2]);
	$subImg.find('img').attr({src: "img/home/news/" + arr[index][1]});
	$viewMore.find('a').attr({href: arr[index][3]});

});

});


