
<!-- Begin

var theImages = new Array() // do not change this

theImages[0] = 'header/header_r11.jpg'
theImages[1] = 'header/header_r12.jpg'
theImages[2] = 'header/header_r13.jpg'
theImages[3] = 'header/header_r14.jpg'
theImages[4] = 'header/header_r15.jpg'
theImages[5] = 'header/header_r16.jpg'
theImages[6] = 'header/header_r17.jpg'
theImages[7] = 'header/header_r18.jpg'
theImages[8] = 'header/header_r19.jpg'
theImages[9] = 'header/header_r20.jpg'
theImages[10] = 'header/header_r21.jpg'
theImages[11] = 'header/header_r22.jpg'
theImages[12] = 'header/header_r23.jpg'
theImages[13] = 'header/header_r24.jpg'
theImages[14] = 'header/header_r25.jpg'
theImages[15] = 'header/header_r26.jpg'
theImages[16] = 'header/header_r27.jpg'
theImages[17] = 'header/header_r28.jpg'
theImages[18] = 'header/header_r29.jpg'
theImages[19] = 'header/header_r30.jpg'
theImages[20] = 'header/header_r31.jpg'
theImages[21] = 'header/header_r40.jpg'
theImages[22] = 'header/header_r41.jpg'
theImages[23] = 'header/header_r42.jpg'
theImages[24] = 'header/header_r43.jpg'
theImages[25] = 'header/header_r44.jpg'
theImages[26] = 'header/header_r45.jpg'
theImages[27] = 'header/header_r46.jpg'
theImages[28] = 'header/header_r47.jpg'
theImages[29] = 'header/header_r48.jpg'
theImages[30] = 'header/header_r49.jpg'
theImages[31] = 'header/header_r50.jpg'
theImages[32] = 'header/header_r51.jpg'
theImages[33] = 'header/header_r52.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 src="'+theImages[whichImage]+'" border="0" alt="">');
}

//  End -->