var theImages2 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages2[0] = '/media/partners/partner_microsoft.jpg'
theImages2[1] = '/media/partners/partner_toshiba.jpg'
theImages2[2] = '/media/partners/partner_1.jpg'
theImages2[3] = '/media/partners/partner_2.jpg'
theImages2[4] = '/media/partners/partner_3.jpg'
theImages2[5] = '/media/partners/partner_4.jpg'

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

theLinks2[0] = '/content/partners/hardware'
theLinks2[1] = '/content/partners/software'
theLinks2[2] = '/content/partners/other'
theLinks2[3] = '/content/partners/industry'
theLinks2[4] = '/content/partners/tbc'
theLinks2[5] = '/content/partners/lorem'

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

theAlt2[0] = 'Microsoft'
theAlt2[1] = 'Toshiba'
theAlt2[2] = 'Partner 1'
theAlt2[3] = 'Partner 2'
theAlt2[4] = 'Partner 3'
theAlt2[5] = 'Partner 4'

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

theText2[0] = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit'
theText2[1] = 'ellentesque in tellus lacus, in sollicitudin lectus tellus sedlectus '
theText2[2] = 'Phasellus imperdiet iaculis magna fermentum aliquam suspendisse'
theText2[3] = 'hasellus ultricies venenatis felis vitae mollis integer ut leo vel'
theText2[4] = 'Nunc sed elit dui, et faucibus turpis. Mauris sem tellus, sodales'
theText2[5] = 'Nullam vitae metus est. Maecenas consequat ipsum ac neque imperdiet'

var j = 0
var p2 = theImages2.length;
var preBuffer = new Array()
for (i = 0; i < p2; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages2[i]
}
var whichImage2 = Math.round(Math.random()*(p2-1));
function showImage(which){

	document.write('<a href="'+theLinks2[whichImage2]+'"><img src="'+theImages2[whichImage2]+'" border="0" alt="'+theAlt2[whichImage2]+'"></a><p>'+theText2[whichImage2]+'</p><a class="defaultBttn" href="'+theLinks2[whichImage2]+'">Find out more</a>');

}

//  End -->