var myCount = 1;
var myTotal = 5;

// Featured Image Rotator Settings (top left home-page)
var myCaptions = new Array("FINLANDIA - REIMAGINE YOUR VODKA","ST. LOUIS INTERNATIONAL AIRPORT","ADOBE IDEAS - NEW TOUCHPAD APPLICATION","VINTAGE VINYL ROCK POSTERS","CHAMBORD FLAVORED VODKA");
var myLinks = new Array("http://www.boxing-clever.com/work/byBrand?id=c_31&hash=#1","http://www.boxing-clever.com/work/byBrand?id=c_33&hash=#1","http://www.boxing-clever.com/cms/blogDetail/59","http://www.boxing-clever.com/cms/designministry","http://www.boxing-clever.com/work/byBrand?id=c_27&hash=#1");
//feed vars (bottom left home-page)
var myCountFeed = 0;
var feedDivs = new Array("twitter_feed","news_feed","blog_feed");

//cube settings (right middle home-page)
var alreadyUsedNumbers = new Array();
var randNum;
var totalCubesInFolder = 60;

$(document).ready(function(){
	//goFunction();	
	
	//controls cubes. loads 10 random cubes of totalCubesInFolder (see above). 
	for(i=0; i<10; i++) {
		
		randNum = Math.floor(Math.random()*totalCubesInFolder)	  	
	  	alreadyUsedNumbers.push(randNum);

	
		for(j=0; j<alreadyUsedNumbers.length; j++) {

			if(alreadyUsedNumbers[j] != randNum) {
		  		$("#cube"+i+"").html("<img src='"+ CI.base_url +"images/cubes/cube_"+randNum+".gif' />");
		  	}

		} 
	
	}
  	
	console.log(alreadyUsedNumbers);
	
	window.setInterval(changeImage, 6000);
	window.setInterval(changeFeed, 7000);
	
	
	$('#home_imgrot').html("<a href='"+myLinks[myCount-1] +"'><img src='images/home1.jpg' /></a><div id='bottom_band'><p>"+myCaptions[myCount-1] +"</p></div>");	
	
	
	$('#home_imgrot').delay(500).fadeIn(1000);  
	$('#bottom_band').delay(2000).show("slide", { direction: "up" }, 1000);	


	
	
});

function changeFeed() {	

	myCountFeed++;
	
	$('.feed_holder').fadeOut(200);  
	
	
	if(myCountFeed <= 2) {
		$('#' + feedDivs[myCountFeed] +'').delay(500).fadeIn(1000);  
   	}
	
	else {
		myCountFeed = 0;
		$('#' + feedDivs[myCountFeed] +'').delay(500).fadeIn(1000);  
	
	}
	
	
		
}


function changeImage() {	

	myCount++;
	
	$('#home_imgrot').fadeOut(500, function() {
		
		if(myCount <= myTotal) {
			$('#home_imgrot').html("<a href='"+myLinks[myCount-1] +"'><img src='images/home"+ myCount +".jpg' /></a><div id='bottom_band'><p>"+myCaptions[myCount-1] +"</p></div>");	
			$('#home_imgrot').delay(500).fadeIn(1000);  
	   	 	$('#bottom_band').delay(2000).show("slide", { direction: "up" }, 1000);
	   	}
		
		else {
			myCount = 1;
			$('#home_imgrot').html("<a href='"+myLinks[myCount-1] +"'><img src='images/home"+ myCount +".jpg' /></a><div id='bottom_band'><p>"+myCaptions[myCount-1] +"</p></div>")
			$('#home_imgrot').delay(500).fadeIn(1000);  
		 	$('#bottom_band').delay(2000).show("slide", { direction: "up" }, 1000);		
		
		}
	
	})  
	
	

	
	
		
}

