<!-- Begin
var theImages = new Array() 

theImages[0] = '/images/01.jpg'
theImages[1] = '/images/02.jpg'
theImages[2] = '/images/03.jpg'
theImages[3] = '/images/04.jpg'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
	document.write('<a href="/portfolio/"><img title="FievreJones" src="'+theImages[whichImage]+'" style="border:1px solid #000; filter:alpha(opacity=50);opacity:0.5" onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100" onmouseout="this.style.opacity=0.5;this.filters.alpha.opacity=50";></a>');
}

//  End -->
