// Select a random image and display it
//$(document).ready(function(){
//	var myImages = new Array();
//	myImages[0] = '<img src="/img/feature1.jpg" alt="its all about who you know">';
//	myImages[1] = '<img src="/img/feature2.jpg" alt="creating opportunities">';
//	myImages[2] = '<img src="/img/feature3.jpg" alt="meet the team building the future">';
//
//	var myRandom = Math.floor(Math.random()*myImages.length);
//	$('#feature').html(myImages[myRandom]);
//}); 