

var theImages2 = new Array()

//Random-loading images
theImages2[0] = 'http://www.california-construction.com/picts/randompicts/constsite.jpg' 
theImages2[1] = 'http://www.california-construction.com/picts/randompicts/bannerHD.jpg' 
theImages2[2] = 'http://www.california-construction.com/picts/randompicts/cutlerhammercontrlmed.jpg' 
theImages2[3] = 'http://www.california-construction.com/picts/randompicts/DisneylandBuzzmed.gif' 
theImages2[4] = 'http://www.california-construction.com/picts/randompicts/DTW2med.jpg' 
theImages2[5] = 'http://www.california-construction.com/picts/randompicts/DTW3med.jpg' 
theImages2[6] = 'http://www.california-construction.com/picts/randompicts/jobsite-banner-033.website.jpg' 
theImages2[7] = 'http://www.california-construction.com/picts/randompicts/jobsite-banner-021.website.jpg'
theImages2[8] = 'http://www.california-construction.com/picts/randompicts/jobsite-banner-009.website.jpg'
theImages2[9] = 'http://www.california-construction.com/picts/randompicts/jobsite-banner-016.website.jpg'
theImages2[10] = 'http://www.california-construction.com/picts/randompicts/DTW4med.jpg'
theImages2[11] = 'http://www.california-construction.com/picts/randompicts/Factorystuds2med.jpg'
theImages2[12] = 'http://www.california-construction.com/picts/randompicts/Factorystudsmed.gif'
theImages2[13] = 'http://www.california-construction.com/picts/randompicts/Framingmed.jpg'
theImages2[14] = 'http://www.california-construction.com/picts/randompicts/Nabisco_Buenapkmed.gif'
theImages2[15] = 'http://www.california-construction.com/picts/randompicts/panamabridgemed.jpg'
theImages2[16] = 'http://www.california-construction.com/picts/randompicts/powerlineupmed.gif'


var j = 0
var p = theImages2.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages2[i]
}
var whichImage2 = Math.round(Math.random()*(p-1));

function showImage2(){
if(whichImage2==0){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left" alt="construction site">');}
else if(whichImage2==1){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left" alt="conv center">');}
else if(whichImage2==2){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left" alt="cutler hammer control">');}
else if(whichImage2==3){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==4){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==5){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==6){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==7){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==8){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==9){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==10){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==11){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==12){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==13){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==14){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==15){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}
else if(whichImage2==16){document.write('<img src="'+theImages2[whichImage2]+'" border=0 width=215 height=150 align="left">');}


} 

