// chanches:
// regular logo: 5/18
// moose: 3/18
// bunny: 3/18
// mole: 3/18
// captain: 2/18
// woef: 1/18
// devil: 1/18

var theImages = new Array()
theImages[0] = 'wikilogo.png'
theImages[1] = 'wikilogo_moose.png'
theImages[2] = 'wikilogo_bunny.png'
theImages[3] = 'wikilogo_mol.png'
theImages[4] = 'wikilogo.png'
theImages[5] = 'wikilogo_moose.png'
theImages[6] = 'wikilogo_bunny.png'
theImages[7] = 'wikilogo_mol.png'
theImages[8] = 'wikilogo_heleen.png'
theImages[9] = 'wikilogo_moose.png'
theImages[10] = 'wikilogo_bunny.png'
theImages[11] = 'wikilogo_mol.png'
theImages[12] = 'wikilogo.png'
theImages[13] = 'wikilogo_woef.png'
theImages[14] = 'wikilogo_heleen.png'
theImages[15] = 'wikilogo.png'
theImages[16] = 'wikilogo.png'
theImages[17] = 'wikilogo_lamb.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('<a style=\'background-image: url("http://www.preparee.be/wiki/pub/skins/monobook/'+theImages[whichImage]+'")\' href="http://www.preparee.be/wiki" title="Preparee wiki"></a>');
}

