I'm just sitting around watching football, so
here's one I did for teens that matches your description.
This script will preload and display images numbered sequentially:
Code:
<script type="text/javascript">
if (document.images) { // Preload images
for(i=0; i< 10; i++) {
inames[i] = new Image();
inames[i].src= "/teen/pictures/naked-teen-nude-"+[i]+".jpg";
}
}
function over(num) {
if(document.images) {
document.images["flip"].src= "/teen/pictures/naked-teen-nude-"+[num]+".jpg";
}}
function out(num) {
if(document.images) {
document.images["flip"].src= '/teen/pictures/naked-teen-nude-35.jpg'; }}
</script>
Change the code in the preload section for a number other than 10 images.
Change the initial number for "i" if you don't want to start at image numbered 0.
naked-teen-nude-35.jpg is the image that will display on load and on mouseout.