var articleList2 = new Array('<a href="concierge_services.php"><img src="images/homeImage1.jpg" border="0" height="388" width="549" /></a>','<a href="concierge_services.php"><img src="images/homeImage2.jpg" border="0" height="388" width="549" /></a>','<a href="concierge_services.php"><img src="images/homeImage3.jpg" border="0" height="388" width="549" /></a>','<a href="concierge_services.php"><img src="images/homeImage4.jpg" border="0" height="388" width="549" /></a>');

function getPhoto(theList) {
	var index; // array index
	var imageName;
	index = Math.floor(Math.random() * theList.length); 
	imageName = theList[index]; 	
	document.write(imageName);
}
