Forum Moderators: not2easy
I'm trying to do something similar (see this thread: [webmasterworld.com...] by setting up a script to rotate the images from within the .css file. It's not very easy...at least I can't seem to get it working, but it seems to be the most effecient way to do it.
You would need a scripting language, like javascript, php, etc. To do it with php, I would just name all the images like "image1.gif", "image2.gif", etc, and when the page loads, use php to get a random number between 1 and 10, assign that random number to a variable such as $random, and then echo out something like this:
echo "<img src=\"image$random.gif\" alt=\"\" />";