// Last modified: 2004-12-21

/* Random image selection  */
var imagez = [
'<img src="/images/randomimages/Tajan_Artstudio.jpg" width="300">',
'<img src="/images/randomimages/Tajan_Moa.jpg" width="300">',
'<img src="/images/randomimages/Tajan_Majorelle.jpg" width="300">',
'<img src="/images/randomimages/Tajan_ArtNouveau.jpg" width="300">'
];

	function getRandomImage() {
		var rand = Math.round(Math.random()*(imagez.length-1)); 
		document.write(imagez[rand]);
	}
