View Single Post
Old 09-14-2008, 02:47 PM  
mikeyddddd
Viva la vulva!
 
mikeyddddd's Avatar
 
Join Date: Mar 2003
Location: you can't please everyone, so you got to please yourself
Posts: 16,557
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.
mikeyddddd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote