var mess = new Array(
'<img src="assets/images/f1.jpg" width="469" height="129" alt="Rehoboth Children\'s Home" />',
'<img src="assets/images/f2.jpg" width="469" height="129" alt="Rehoboth Children\'s Home" />',
'<img src="assets/images/f3.jpg" width="469" height="129" alt="Rehoboth Children\'s Home" />',
'<img src="assets/images/f4.jpg" width="469" height="129" alt="Rehoboth Children\'s Home" />',
'<img src="assets/images/f5.jpg" width="469" height="129" alt="Rehoboth Children\'s Home" />');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    
