var homeGraphics = new Array(8);

if(document.images) {
	homeGraphics[0] = new Image(670, 335);
	homeGraphics[0].src = "images/homepage/900-006061N.jpg";

	homeGraphics[1] = new Image(670, 335);
	homeGraphics[1].src = "images/homepage/100-009022N.jpg";

	homeGraphics[2] = new Image(670, 335);
	homeGraphics[2].src = "images/homepage/200-005053N.jpg";

	homeGraphics[3] = new Image(670, 335);
	homeGraphics[3].src = "images/homepage/200-007021N.jpg";

	homeGraphics[4] = new Image(670, 335);
	homeGraphics[4].src = "images/homepage/400-009021N.jpg";

	homeGraphics[5] = new Image(670, 335);
	homeGraphics[5].src = "images/homepage/500-009064N.jpg";
	
	homeGraphics[6] = new Image(670, 335);
	homeGraphics[6].src = "images/homepage/600-009021N.jpg";

	homeGraphics[7] = new Image(670, 335);
	homeGraphics[7].src = "images/homepage/700-009025N.jpg";
	
}

function randomHomeGraphic() {

	var rndJ = Math.round(Math.random()*(homeGraphics.length - 1));
	document.images["homegraphic"].src = homeGraphics[rndJ].src;
}