	<!--
	function imageChanger() {
	var d = document;
	image = new Array(
	'<img src="images/home/splash/1.jpg" alt="artists network" width="900" height="269">',
	'<img src="images/home/splash/2.jpg" alt="creative design" width="900" height="269">',
	'<img src="images/home/splash/3.jpg" alt="poets" width="900" height="269">',
	'<img src="images/home/splash/4.jpg" alt="musicians" width="900" height="269">',
	'<img src="images/home/splash/5.jpg" alt="writers" width="900" height="269">',
	'<img src="images/home/splash/6.jpg" alt="djs" width="900" height="269">',
	'<img src="images/home/splash/7.jpg" alt="talented artists" width="900" height="269">',
	'<img src="images/home/splash/8.jpg" alt="art" width="900" height="269">',
	'<img src="images/home/splash/9.jpg" alt="models" width="900" height="269">',
	'<img src="images/home/splash/10.jpg" alt="music" width="900" height="269">',
	'<img src="images/home/splash/11.jpg" alt="online gallery" width="900" height="269">',
	'<img src="images/home/splash/12.jpg" alt="masters of the arts" width="900" height="269">',
	'<img src="images/home/splash/13.jpg" alt="go design group" width="900" height="269">',
	'<img src="images/home/splash/14.jpg" alt="web design" width="900" height="269">',
	'<img src="images/home/splash/15.jpg" alt="online art" width="900" height="269">',
	'<img src="images/home/splash/16.jpg" alt="online gallery" width="900" height="269">',
	'<img src="images/home/splash/17.jpg" alt="design services" width="900" height="269">'
	);
	imgCt = image.length;
	randomNum = Math.floor((Math.random() * imgCt));
	d.write(image[randomNum]);
	}
	//-->
