	<!--
	function imageChanger2() {
	var d = document;
	image = new Array(
	'<img src="images/html/home/4.jpg" alt="arts and design" width="160" height="173">',
	'<img src="images/html/home/5.jpg" alt="arts and design" width="160" height="173">',
	'<img src="images/html/home/6.jpg" alt="arts and design" width="160" height="173">'
	);
	imgCt = image.length;
	randomNum = Math.floor((Math.random() * imgCt));
	d.write(image[randomNum]);
	}
	//-->
