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