<!-- Begin

var theImages = new Array() 

theImages[0] = '__graphics/headers/header_home_01.jpg'
theImages[1] = '__graphics/headers/header_home_02.jpg'
theImages[2] = '__graphics/headers/header_home_03.jpg'
theImages[3] = '__graphics/headers/header_home_04.jpg'
theImages[4] = '__graphics/headers/header_home_05.jpg'
theImages[5] = '__graphics/headers/header_home_06.jpg'
theImages[6] = '__graphics/headers/header_home_07.jpg'
theImages[7] = '__graphics/headers/header_home_08.jpg'
theImages[8] = '__graphics/headers/header_home_09.jpg'
theImages[9] = '__graphics/headers/header_home_10.jpg'
theImages[10] = '__graphics/headers/header_home_11.jpg'
theImages[11] = '__graphics/headers/header_home_13.jpg'
theImages[12] = '__graphics/headers/header_home_14.jpg'
theImages[13] = '__graphics/headers/header_home_16.jpg'
theImages[14] = '__graphics/headers/header_home_15.jpg'


var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->