
// ### Random Image Script ### //

// Port BtnImg
var thisImg = new Array();
thisImg[0] = 'http://www.erange.net/images/btn_port_bmp.gif';
thisImg[1] = 'http://www.erange.net/images/btn_port_minemine.gif';
thisImg[2] = 'http://www.erange.net/images/btn_port_emmert.gif';
thisImg[3] = 'http://www.erange.net/images/btn_port_ge.gif';
thisImg[4] = 'http://www.erange.net/images/btn_port_predator.gif';
thisImg[5] = 'http://www.erange.net/images/btn_port_sfa.gif';
thisImg[6] = 'http://www.erange.net/images/btn_port_apa.gif';
thisImg[7] = 'http://www.erange.net/images/btn_port_hod.gif';

var pict = thisImg.length;

var preLoad = new Array();

for (i=0; i<pict; i++) {
	preLoad[i]	= new Image();
	preLoad.src	= thisImg[i];
}

var pickNum = Math.floor(Math.random()*pict);


function dispImg() {
	document.write('<div align="center"><a href="portfolio.php"><img src="'+thisImg[pickNum]+'" width="100" height="75" border="0"></a><br>');
}

// ### End Ranomd Image Script ### //
