var imageArray = new Array();

imageArray[0] = "/site/perthweb/templates/grfx/logos/goc.jpg"; 
imageArray[1] = "/site/perthweb/templates/grfx/logos/stemgroup.jpg";
imageArray[2] = "/site/perthweb/templates/grfx/logos/allwines.jpg";
imageArray[3] = "/site/perthweb/templates/grfx/logos/beehive.jpg";
imageArray[4] = "/site/perthweb/templates/grfx/logos/insideoutside.jpg";
imageArray[5] = "/site/perthweb/templates/grfx/logos/scholaris.jpg";
imageArray[6] = "/site/perthweb/templates/grfx/logos/buildingin.jpg";
imageArray[7] = "/site/perthweb/templates/grfx/logos/visionidz.jpg";
imageArray[8] = "/site/perthweb/templates/grfx/logos/capritech.jpg";
imageArray[9] = "/site/perthweb/templates/grfx/logos/neorise.jpg";
function logoLoad()
{
var rand = Math.floor(Math.random()*10);

var imgPath = "<img src='"+imageArray[rand]+"' alt='featured_client' border='0' />";

document.getElementById("featured_client").innerHTML = imgPath;

}