// JavaScript Document

function writeIndexImages() {

arImages = [];

arImages[0] = "<a href='work/walden_studios/walden_mixed_use.html?mode=all'><img class='cca_header_image' src='images/frontpage/9.jpg' border=0 style='display:none;'></a>";
arImages[1] = "<a href='work/slow_food_nation/slow_food_nation.html?mode=all'><img class='cca_header_image' src='images/frontpage/10.jpg' border=0 style='display:none;'></a>";
arImages[2] = "<a href='work/turner_duckworth/turner_duckworth_offices.html?mode=all'><img class='cca_header_image' src='images/frontpage/5.jpg' border=0 style='display:none;'></a>";
arImages[3] = "<a href='work/kokoris/kokoris_residence.html?mode=all'><img class='cca_header_image' src='images/frontpage/11.jpg' border=0 style='display:none;'></a>";
arImages[4] = "<a href='work/turner_duckworth/turner_duckworth_offices.html?mode=all'><img class='cca_header_image' src='images/frontpage/2.jpg' border=0 style='display:none;'></a>";
arImages[5] = "<a href='work/cca_jewett/cca_jewett_studios.html?mode=all'><img class='cca_header_image' src='images/frontpage/8.jpg' border=0 style='display:none;'></a>";
arImages[6] = "<a href='work/ann_hamilton_tower/ann_hamilton_tower.html?mode=all'><img class='cca_header_image' src='images/frontpage/4.jpg' border=0 style='display:none;'></a>";
arImages[7] = "<a href='work/cca_graduate_center/cca_graduate_center.html?mode=all'><img class='cca_header_image' src='images/frontpage/1.jpg' border=0 style='display:none;'></a>";
arImages[8] = "<a href='work/kbpw/kpbw_offices.html?mode=all'><img class='cca_header_image' src='images/frontpage/6.jpg' border=0 style='display:none;'></a>";
arImages[9] = "<a href='work/cca_graduate_center/cca_graduate_center.html?mode=all'><img class='cca_header_image' src='images/frontpage/7.jpg' border=0 style='display:none;'></a>";
arImages[10] = "<a href='work/cca_graduate_studios/cca_graduate_studios.html?mode=all'><img class='cca_header_image' src='images/frontpage/3.jpg' border=0 style='display:none;'></a>";
arImages[11] = "<a href='work/sfmoma/sfmoma.html?mode=all'><img class='cca_header_image' src='images/frontpage/12.jpg' border=0 style='display:none;'></a>";
arImages[12] = "<a href='work/sfmoma/sfmoma.html?mode=all'><img class='cca_header_image' src='images/frontpage/13.jpg' border=0 style='display:none;'></a>";


index = Math.floor(Math.random() * arImages.length);
imgName = arImages[index];

var currentImage = Math.floor(Math.random() * arImages.length);
var currentString = "";

for (i=0;i<=arImages.length-1;i++)
{
	currentString = arImages[currentImage];
	document.writeln(currentString);
	
	if(currentImage < arImages.length+1) {
		currentImage = currentImage + 1;
	
	}
	if(currentImage == arImages.length) {
		currentImage = 0;
	}
	
	
}


}