/* Home random image code */

var randomLinks = new Array();

randomLinks[0] = '<img alt="We\'re making sustainability our business" src="images/pic-homepage-1.jpg" class="pic home" width="567" height="226" />';
randomLinks[1] = '<img alt="We\'re making sustainability our business" src="images/pic-homepage-2.jpg" class="pic home" width="567" height="226" />';
randomLinks[2] = '<img alt="We\'re making sustainability our business" src="images/pic-homepage-3.jpg" class="pic home" width="567" height="226" />';
randomLinks[3] = '<img alt="We\'re making sustainability our business" src="images/pic-homepage-4.jpg" class="pic home" width="567" height="226" />';
randomLinks[4] = '<img alt="We\'re making sustainability our business" src="images/pic-homepage-5.jpg" class="pic home" width="567" height="226" />';

function randomLink() {
	var add = randomLinks[Math.floor(Math.random()*randomLinks.length)];
	return(add);
}

document.write(randomLink());