Try this:
PHP Code:
$logodir = "images/";
$logos = array
(
array ($logodir . "filename.png","http://mylink/"),
array ($logodir . "filename2.png","http://anotherlink/")
);
function make_seed() {
list($usec, $sec) = explode(' ', microtime());
return (float) $sec + ((float) $usec * 100000);
}
srand(make_seed());
$logo = rand(0, count ($logos) - 1);
list ($titleimage, $titleurl) = $logos[$logo];
Now you can use $titleimage and $titleurl in your templates.