var theImages = new Array()

//Random-loading images - Old Images
//theImages[0] = 'images/theme_escalator.jpg' // replace with names of images
//theImages[1] = 'images/theme_cablecar.jpg' // replace with names of images
//theImages[2] = 'images/theme_vending.jpg' // replace with names of images

theImages[0] = 'images/4-steps-procurement-transformation.gif' // replace with names of images
theImages[1] = 'images/pierre-banner.gif' // replace with names of images
theImages[2] = 'images/4-steps-procurement-transformation.gif' // replace with names of images

//theImages[0] = 'images/experience2010-event-banner1.gif' // replace with names of images
//theImages[1] = 'images/experience2010-event-banner1.gif' // replace with names of images
//theImages[2] = 'images/experience2010-event-banner1.gif' // replace with names of images


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(){
if(whichImage==0){
//document.write('<a href ="solution/strategic-sourcing.html"><img src="'+theImages[whichImage]+'" border=0 width=286 height=452></a>');

//document.write('<a href ="experience-tour-2010/zycus-experience-tour-2010.html"><img src="'+theImages[whichImage]+'" border=0 width=286 height=452 alt=Strategic_Sourcing--Spend_Analysis--Contract_Management></a>');

document.write('<a href ="http://event.on24.com/r.htm?e=257442&s=1&k=4D46FDC066E3DB0E2DBDCAE92DF0F9C8&partnerref=website" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=286 height=452 alt=webinar></a>');

}
else if(whichImage==1){ 
document.write('<a href ="http://www.zycus.com/resource-centre/zycus-webinar-30nov-lp.html" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=286 height=452 alt=Webinar></a>');
}
else if(whichImage==2){
document.write('<a href ="http://event.on24.com/r.htm?e=257442&s=1&k=4D46FDC066E3DB0E2DBDCAE92DF0F9C8&partnerref=website" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=286 height=452 alt=Webinar></a>');
}



}
