// JavaScript Document

var theImagesPortA = new Array()
 
theImagesPortA[0] = 'images/general/portraitImage01.jpg'
theImagesPortA[1] = 'images/general/portraitImage2_03.jpg'
 
var j = 0
var p = theImagesPortA.length;
var preBuffer = new Array()
 
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImagesPortA[i]
}
var whichImagePortA = Math.round(Math.random()*(p-1));
 
function showImagePortAA(){
    if(whichImagePortA==0){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }
    else if(whichImagePortA==1){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }
  /*  else if(whichImagePortA==2){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }
    else if(whichImagePortA==3){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }
    else if(whichImagePortA==4){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }
	 else if(whichImagePortA==5){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }
	 else if(whichImagePortA==6){
    document.write('<img src="'+theImagesPortA[whichImagePortA]+'" border=0 width=85 height=120></a>');
    }*/
  
}

