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