// Setup the image array
var image = new Array();

image[0] = 'image_01.jpg';

// Gets a image file name at random
function random_image() {

	// Get a random number
	var i = Math.round((image.length-1)*Math.random());

	// Return the file image file name
    return(image[i]);

}