var theImages = new Array() // do not change this

theImages[0] = 'ad.jpg'
theImages[1] = 'ad1.jpg'

// 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('<a href=http://www.mnla.com/memberdirectory><img src=http://www.mnla.com/images/'+theImages[whichImage]+' border=0/></a>');
} 


var theImages2 = new Array() // do not change this

theImages2[0] = 'ad2.jpg'
theImages2[1] = 'ad3.jpg'

// do not edit anything below this line

var j = 0
var p = theImages2.length;
var preBuffer2 = new Array()
for (i = 0; i < p; i++){
   preBuffer2[i] = new Image()
   preBuffer2[i].src = theImages2[i]
}
var whichImage2 = Math.round(Math.random()*(p-1));
function showImage2(){
document.write('<a href=http://www.mnla.com/news/benefits><img src=http://www.mnla.com/images/'+theImages2[whichImage2]+' border=0/></a>');
} 
