// javascript for justyntdavis.com
//written by clayton combe


function randomPic(){
	var pic = new Array;
		pic[0] = 'cuando01.jpg';
		pic[1] = 'cuando02.jpg';
		pic[2] = 'cuando03.jpg';
		pic[3] = 'cuando04.jpg';
		pic[4] = 'cuando05.jpg';
		pic[5] = 'cuando06.jpg';
		pic[6] = 'cuando07.jpg';
		pic[7] = 'cuando08.jpg';
		pic[8] = 'forest01.jpg';
		pic[9] = 'liberty.jpg';
		pic[10] = 'streetDreams01.jpg';
		
	var rand = Math.floor(Math.random()*11);
		
	document.getElementById('mainPic').style.backgroundImage = "url('images/frames/" + pic[rand] + "')";
}

