
backgroundColor = new Array(6);
backgroundImage = new Array(6);
captions = new Array(6);

sidebarImage = new Array(10);
sidebarCaptions = new Array(10);

backgroundColor[0] = '#aacdbb';
backgroundImage[0] = 'url(images/home_page_bg01.jpg)';
captions[0] = '<span style="color:#fff;">Kristy Kennedy & William Yong in "Sugar & Snails"<br />Film directed by Kathi Prosser</span>';

backgroundColor[1] = '#e0dac0';
backgroundImage[1] = 'url(images/home_page_bg02.jpg)';
captions[1] = '<span style="color:#000;">Barbara Pallomina in "Non-existent Dances"<br />choreographed by Jessica Runge and photographed by John Lauener</span>';

backgroundColor[2] = '#8c8c8c';
backgroundImage[2] = 'url(images/home_page_bg03.jpg)';
captions[2] = '<span style="color:#fff;">Lucy Rupert in rehearsal<br />photographed Rebecca Carney</span>';

backgroundColor[3] = '#f5f0e7';
backgroundImage[3] = 'url(images/home_page_bg05.jpg)';
captions[3] = '<span style="color:#000;">Barb Lindenberg<br />photographed by John Lauener</span>';

backgroundColor[4] = '#413634';
backgroundImage[4] = 'url(images/home_page_bg06.jpg)';
captions[4] = '<span style="color:#fff;">Barbara Murray</span>';

backgroundColor[5] = '#a7a0a7';
backgroundImage[5] = 'url(images/home_page_bg07.jpg)';
captions[5] = '<span style="color:#fff;">Jenn Goodwin<br />photographed by Finn O\'Hara</span>';

index = Math.floor(Math.random() * backgroundImage.length);

function ranCaption() {
	return(captions[index]);
}

function ranBackground() {
	document.getElementById('background').style.backgroundColor = backgroundColor[index];
	document.getElementById('background').style.backgroundImage = backgroundImage[index];
	document.getElementById('background').style.backgroundRepeat = "no-repeat";
}

sidebarImage[0] = '/images/side_bar_photo01.jpg';
sidebarCaptions[0] = 'Barbara Pallomina in "Home"<br />choreographed by Barbara Pallomina<br />photographed by John Lauener';

sidebarImage[1] = '/images/side_bar_photo02.jpg';
sidebarCaptions[1] = 'William Yong in "Alone on Paper"<br />photographed by David Hou';

sidebarImage[2] = '/images/side_bar_photo03.jpg';
sidebarCaptions[2] = 'Lucy Rupert in "11x Forgeting"<br />choreographed by Lucy Rupert<br />photographed by Melanie Gordon';

sidebarImage[3] = '/images/side_bar_photo04.jpg';
sidebarCaptions[3] = 'Susanna Hood in "Waking en-dessou"<br />choreographed by Susanna Hood<br />photographed by John Lauener';

sidebarImage[4] = '/images/side_bar_photo05.jpg';
sidebarCaptions[4] = 'Allen & Karen Kaeja<br />photographed by David Hou';

sidebarImage[5] = '/images/side_bar_photo06.jpg';
sidebarCaptions[5] = 'Michael Sean Marye and Andrea Nann<br />in "The Whole Shebang"<br />photographed by John Lauener';

sidebarImage[6] = '/images/side_bar_photo07.jpg';
sidebarCaptions[6] = 'Peter Chin<br />photographed by Cylla von Tiedemann';

sidebarImage[7] = '/images/side_bar_photo08.jpg';
sidebarCaptions[7] = 'Lucy Rupert in rehearsal<br />photographed Rebecca Carney';

sidebarImage[8] = '/images/side_bar_photo09.jpg';
sidebarCaptions[8] = 'Allen & Karen Kaeja<br />photographed by Ella Cooper';

sidebarImage[9] = '/images/side_bar_photo10.jpg';
sidebarCaptions[9] = 'Denise Fujiwara';

sidebarImage[10] = '/images/side_bar_photo11.jpg';
sidebarCaptions[10] = 'Allen & Karen Kaeja';

index2 = Math.floor(Math.random() * sidebarImage.length);

function ranInteriorCaption() {
	return(sidebarCaptions[index2])
}

function ranSidebarImage() {
	document.getElementById('sidebarImage').src = sidebarImage[index2];
}
