If you just want to rotate header images you'd be better off with a simple function in your theme file...
If you name the images you want to rotate in a numeric sequence it's only a few lines of code to write...
So let's say you had images like this... (doesn't matter where they're placed - as in the folder)..
image-1.jpg
image-2.jpg
image-3.jpg
As long as you keep a naming scheme simple you could essentially do that with minimal amounts of code..
Here's a basic number randomising function..
<?php
function randnum() {
// Range creates an array from a range (in this case 1 - 10)
$b = range(1,10);
// So the array looks like - array(1,2,3,4,5,6,7,8,9,10)
shuffle($b);
$r = array_values($b);
echo $r[rand(1,10)];
}
?>
Then you'd place a call to the function wherever, here's 2 examples..
On an image.
<img src="/some/path/to/images/myimage-<?php randnum(); ?>.jpg" alt="" />
Using an element and CSS.
<div class="myclass" id="myimage-<?php randnum(); ?>">
With the second option you'd set the background properties using the class, minus the image...
.myclass {
background-position:top left;
background-color:transparent;
background-repeat:no-repeat;
}
#myimage-1 {
background-image:url(images/someimage1.jpg);
}
#myimage-2 {
background-image:url(images/someimage1.jpg);
}
/* And so on up to 10 (assuming 10 is the limit) */
Just alternate ideas... ;)
And my examples are crude, so don't take them as shining examples!.. lol.. it's just to give you an idea of how simple a random function can be.... no need for additional scripts...