
var theImages = new Array();
theImages[0] = '/fix/files/BL1_680x113.jpg';
theImages[1] = '/fix/files/motiv/BL10_680x113.jpg';
theImages[2] = '/fix/files/motiv/BL4_680x113.jpg';
theImages[3] = '/fix/files/BL2_680x113.jpg';
theImages[4] = '/fix/files/BL1_680x113.jpg';
theImages[5] = '/fix/files/motiv/BL7_680x113.jpg';
theImages[6] = '/fix/files/motiv/BL6_680x113.jpg';
theImages[7] = '/fix/files/motiv/BL3_680x113.jpg';
theImages[8] = '/fix/files/motiv/BL5_680x113.jpg';
theImages[9] = '/fix/files/motiv/BL8_680x113.jpg';
theImages[10] = '/fix/files/motiv/BL9_680x113.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('<img border="0" height="113" width="680" alt="" src="'+theImages[whichImage]+'" />');
}
