// Random photo selection script 
// by Maximus Clarke
// Modified 20060106, 20050815
// This script selects a random photo to be put on the front page of ArtificeEternity.com.
// Random numbers will range from 0 to x; the first photo should be numbered 0, 
// the last photo numbered x.
// NOTE: Javascript's random number function seems to show a bias toward numbers in the 
// middle of the range.

// Random number generation
var randomNumber=Math.random()*24;
var randomRounded=Math.round(randomNumber);

if (randomRounded==0) {
	document.write('<img src="photos/20020502_ceiling_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==1) {
	document.write('<img src="photos/20020502_pipes_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==2) {
	document.write('<img src="photos/20020510_train_450.jpg" width="450" height="310" alt="" border="0">');
	}

else if (randomRounded==3) {
	document.write('<img src="photos/20020512_icecream_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==4) {
	document.write('<img src="photos/20020518_canalst_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==5) {
	document.write('<img src="photos/20020525_ltrain_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==6) {
	document.write('<img src="photos/20020525_7thave_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==7) {
	document.write('<img src="photos/20020608_digisign2_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==8) {
	document.write('<img src="photos/20020612_virgin_bath_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==9) {
	document.write('<img src="photos/20020629_everglades2_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==10) {
	document.write('<img src="photos/20040118_probably_lowest_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==11) {
	document.write('<img src="photos/20020630_linc_spheres_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==12) {
	document.write('<img src="photos/20020902_oldsign_2_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==13) {
	document.write('<img src="photos/20020711_silvertowers_1_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==14) {
	document.write('<img src="photos/20020901_mine_spiralstair_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==15) {
	document.write('<img src="photos/200402_dc_metro_groin_vault_2_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==16) {
	document.write('<img src="photos/200402_dc_dupont_escalator_1_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==17) {
	document.write('<img src="photos/20040102_cuban_cuisine_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==18) {
	document.write('<img src="photos/20040105_fairchild_vista_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==19) {
	document.write('<img src="photos/200402_dc_nationalcathedral_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==20) {
	document.write('<img src="photos/200402_dc_securityalert_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==21) {
	document.write('<img src="photos/200405_philly_pd_450.jpg" width="450" height="338" alt="" border="0">');
	}

else if (randomRounded==22) {
	document.write('<img src="photos/20040208_hallofscience_338.jpg" width="254" height="338" alt="" border="0">');
	}

else if (randomRounded==23) {
	document.write('<img src="photos/20050604_domsey_450.jpg" width="450" height="338" alt="" border="0">');
	}

// Note: I'm duplicating the last photo b/c the random number function seems biased against it.
else if (randomRounded==24) {
	document.write('<img src="photos/20050604_domsey_450.jpg" width="450" height="338" alt="" border="0">');
	}
