// JavaScript Document
$(document).ready(function (){

var arr = [
		   
['What&#39;s New','promo_nutri.jpg','Boost skin&#39;s cell renewal with our first youth-enhancing concentrate, Nutriganics&trade; Drops of Youth, which gives skin a smoother and fresher appearance!','ProductDetail.aspx?ProdID=2306&SubCateId=180&CateId=4'],

['Award-Winning Products','award.png','Find out what we are famous for!','Award+Winning.aspx'],

['Spa Treatments','spatreatment.png','Discover our spa treatments at The Body Shop&reg; Green Sanctuary.','spa_treatments.aspx'],

['Top 10 Must-Haves','10musthaves.jpg','Check out our Top 10 must-haves!','10musthaves.aspx'],

['Celebrate 35 Years','10milestones.jpg','Discover our 10 milestones that made us what we are today!','10milestone.aspx'],

['Gift Ideas','gift.png','Get The Body Shop gift card at any of our stores.','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').html(arr[index][0]);
	$(this).find('div.side-text').html(arr[index][2]);
	$subImg.find('img').attr({src: "../_global/img/home/news/" + arr[index][1]});
	$viewMore.find('a').attr({href: arr[index][3]});

});

});

