// JavaScript Document


<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/nexen_logo.png'
theImages[1] = 'images/wood_logo.png'
theImages[2] = 'images/jacos_logo.png'
theImages[3] = 'images/ceda_logo.png'
theImages[4] = 'images/snclavalin_logo.png'
theImages[5] = 'images/syncrude_logo.png'
theImages[6] = 'images/Country93_logo.png'
theImages[7] = 'images/Willbros_logo.png'
theImages[8] = 'images/PTI_logo.png'
theImages[9] = 'images/ConocoPhilips_logo.png'
theImages[10] = 'images/cenovus_logo.png'
theImages[11] = 'images/enbridge_logo.png'
theImages[12] = 'images/shaw_logo.png'
theImages[13] = 'images/devon_logo.png'
theImages[14] = 'images/buildingtrades_logo.png'
theImages[15] = 'images/total_logo.png'
theImages[16] = 'images/ACSA_logo.png'
theImages[17] = 'images/statoil_logo.png'



// do not edit anything below this line

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('<span style="width:136px;height:47px;display:inline-block; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'' + theImages[whichImage] +'\');"><img style="filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" src="' +theImages[whichImage] +'" width="136px" height="47px" border="0" alt=""></span>');

}

//  End -->

