function randomizer(min,max){
   return (Math.round(Math.random()*(max-min)))+min;
}

function randomPic()
{
	var randPage = randomizer(1,3)
	switch (randPage)
	{
	case 1:
		document.write("<img src=\"/BuckConsultantsUK/Portals/0/Assets/home/banner_1.jpg\" width=\"605\" height=\"339\" alt=\"\" border=\"0\" />");
		break;
	case 2:
		document.write("<img src=\"/BuckConsultantsUK/Portals/0/Assets/home/banner_2.jpg\" width=\"605\" height=\"339\" alt=\"\" border=\"0\" />");
		break;
	default:
		document.write("<img src=\"/BuckConsultantsUK/Portals/0/Assets/home/banner_3.jpg\" width=\"605\" height=\"339\" alt=\"\" border=\"0\" />");
		break;
	}
}
// Create array to hold six URLs;
var dest = new Array(6);
dest[0] = window.location.href;
dest[1] = "http://www.buckconsultants.com/buckconsultants/";
dest[2] = "http://buckconsultants.co.uk/";
dest[3] = "http://acsbuckcanada.com/buckconsultantsca/";
dest[4] = "http://www.buckconsultants.es/";
dest[5] = "http://206.137.59.71/";
function go(d) {
	window.location.href = dest[d.destination.options.selectedIndex];      


}