// JavaScript Document
var slideshow 	= {'project0':{'img':'header_01.jpg','client':'One Palm','text':'Understated elegance','project':'one-palm'},
				   'project1':{'img':'header_03.jpg','client':'Sea Doo','text':'Does form follow function or function follow form?','project':'sea-doo'},
				   'project2':{'img':'header_05.jpg','client':'Brighthouse Networks','text':'The official cable provider of the Tampa Bay Buccaneers','project':'brighthouse'},
				   'project3':{'img':'header_06.jpg','client':'ADS','text':'Practice transitions made perfect','project':'ads'},
				   'project4':{'img':'header_07.jpg','client':'1st Guard Insurance','text':'The trucker\'s insurance company','project':'1st-guard-ads'},
				   'project5':{'img':'header_11.jpg','client':'Sarasota Tomorrow','text':'Are you in?','project':'sarasota-tomorrow-ads'},
				   'project6':{'img':'header_13.jpg','client':'Sabal Trust','text':'Here Today. Here Tomorrow.','project':'sabal-trust-ads'},
				   'project7':{'img':'header_17.jpg','client':'MCIM','text':'We\'ve got you covered','project':'mcim'},
				   'project8':{'img':'header_20.jpg','client':'ollo','text':'We\'re all about taste','project':'ollo'}};

$(document).ready(function(){
	var pNum = Math.floor(Math.random()*9);
	$('#slideshowImg').attr('src','/static/images/work/banners/'+slideshow['project'+pNum].img);
	$('#slideshowClient').html(slideshow['project'+pNum].client);
	$('#slideshowCopy').html(slideshow['project'+pNum].text);
	$('#seeMore').attr('href','/work.php#'+slideshow['project'+pNum].project);
});

