hmmmm...
PHP Code:
<?php $pics = array(
array("URL to pic","Mime type"),
array("otherpic.jpg","image/jpeg"),
array("directory/differentpic.png","image/png"),
array("http://domain.com/pic.bmp","image/bmp")
);
$key = array_rand($pics);
header('Content-type: '$pics[$key][1]);
echo file_get_contents($pics[$key][0]); ?>
put this into a php file on a web server, and replace the URLs with actual URLs(reletive to the php file) and the mime types with the coresponding mime types.
you can have as many of the inner array()s as you want, as long as you have one comma in between each.
EDIT: you have to link to that php file in your sig.
Bookmarks