var theImages2 = new Array()

//Random-loading images
theImages2[0] = 'images/home_tab2_product_01.png' // replace with names of images
theImages2[1] = 'images/home_tab2_product_02.png' // replace with names of images
theImages2[2] = 'images/home_tab2_product_03.png' // replace with names of images
theImages2[3] = 'images/home_tab2_product_04.png' // replace with names of images

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 whichImage = Math.round(Math.random()*(p-1));

function showImage2(){
if(whichImage==0){
document.write('<a href ="crestron_tpmc8x.htm"><img src="'+theImages2[0]+'" border=0 width=250 height=177></a>');
}
else if(whichImage==1){
document.write('<a href ="mitsubishi_hc4000.htm"><img src="'+theImages2[1]+'" border=0 width=250 height=177></a>');
}
else if(whichImage==2){
document.write('<a href ="plus_m18.htm"><img src="'+theImages2[2]+'" border=0 width=250 height=177></a>');
}
else if(whichImage==3){
document.write('<a href ="clearone_max_ex.htm"><img src="'+theImages2[3]+'" border=0 width=250 height=177></a>');
}


}


