// JavaScript Document
// Random image selector for Brand and Communications

	var Picture=new Array();
	
	Picture[0] = "assets/homeimg_1.jpg";
	Picture[1] = "assets/homeimg_2.jpg";
	Picture[2] = "assets/homeimg_3.jpg";
	
	var Q = Picture.length;
	var whichPicture=Math.round(Math.random()*(Q-1));
	
	function showPicture() {
		document.write("<img src='"+Picture[whichPicture]+"' alt='ABA-design.'>");
	}