<!--
var mess = new Array(
'<img src="images/aboutmontage.jpg" width="239" height="547">',
'<img src="images/aboutmontage2.jpg" width="239" height="547">',
'<img src="images/aboutmontage3.jpg" width="239" height="547">',
'<img src="images/aboutmontage4.jpg" width="239" height="547">',
'<img src="images/aboutmontage5.jpg" width="239" height="547">',
'<img src="images/aboutmontage6.jpg" width="239" height="547">');
var max = mess.length;

function changeImage(){
	var num = Math.floor((Math.random() * max));
	document.getElementById("randomaboutimage").innerHTML = mess[num];
}
changeImage();
//-->