// JavaScript Document

var theImagesPorts = new Array()
 
theImagesPorts[0] = 'images/general/portraitImage05.jpg'
theImagesPorts[1] = 'images/general/portraitImage06.jpg'
theImagesPorts[2] = 'images/general/portraitImage07.jpg'
 
var j = 0
var p = theImagesPorts.length;
var preBuffer = new Array()
 
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImagesPorts[i]
}
var whichImagePorts = Math.round(Math.random()*(p-1));
 
function showImagePorts(){
    if(whichImagePorts==0){
    document.write('<img src="'+theImagesPorts[whichImagePorts]+'" border=0 width=85 height=120></a>');
    }
    else if(whichImagePorts==1){
    document.write('<img src="'+theImagesPorts[whichImagePorts]+'" border=0 width=85 height=120></a>');
    }
    else if(whichImagePorts==2){
    document.write('<img src="'+theImagesPorts[whichImagePorts]+'" border=0 width=85 height=120></a>');
    }
    else if(whichImagePorts==3){
    document.write('<img src="'+theImagesPorts[whichImagePorts]+'" border=0 width=85 height=120></a>');
    }

 
}
