function randomImage(weekNumber) {
	n = Math.floor(Math.random() * 6) + 1;
	document.write("<img src='image/random/00" + weekNumber 
	+ "/00" + n + ".jpg' width='140' height='105' alt='Image' />");
}
