<!--
function change()
{
	var randomnumber=Math.floor(Math.random()*4);
	if(randomnumber==0)
	{
		window.location ="our-people.html";
	}
	else if(randomnumber==1)
	{
		window.location ="our-people-cheryl.html";
	}
	else if(randomnumber==2)
	{
		window.location ="our-people-david.html";
	}
	else if(randomnumber==3)
	{
		window.location ="our-people-robert.html";
	}
	
}

-->
