var theImages = new Array() // do not change this
theImages[0] = '1.jpg';
theImages[1] = '2.jpg';
theImages[2] = '3.jpg';
theImages[3] = '4.jpg';
// do not edit anything below this line
var j = 0;
var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(path){
	//$("#random_image").attr('src', path + theImages[whichImage])  
	document.write('<img src="' + path + theImages[whichImage]+'" border="0">');
}
//    showImage(); // static block - > home_bottom

