var numberOfPhotos = 5; 	// how many photos are there?
var photoStartNumber = 1; 	// what is the first photo number?

// DO NOT EDIT BELOW THIS LINE

var num = getRandom(photoStartNumber, numberOfPhotos);

function getImage(which, width, height) {
	return '<IMG SRC="/images/photo_home' + which + '-0' + num + '.jpg" ALT="WD Interactive" WIDTH="' + width + '" HEIGHT="' + height + '" BORDER="0">';
}

function getRandom(min, max) {
	return Math.round((Math.random() * (max-min)) + min)
}