<!--

/*
Script by FPMC at http://jsarchive.8m.com
Submitted to JavaScript Kit (http://javascriptkit.com)
For this and 400+ free scripts, visit http://javascriptkit.com
*/

//set image paths
src = [
	"/images/jaxmodel-lauren-ferrari2.jpg",
	"/images/jaxmodel-amelia-ph.jpg",
	"/images/jaxmodel-eva-ferrari.jpg",
	"/images/jaxmodel-christina.jpg",
	"/images/jaxmodel-kristen.jpg",
	"/images/gabrielle/gabrielle-02.jpg",
	"/images/feature-katherine2.jpg",
	"/images/ph-bed.jpg",
	"/images/feature-candice.jpg",
	"/images/ph-leah.jpg",
	"/images/feature-libby.jpg",
	"/images/ph-valerie.jpg",
	"/images/feature-courtney.jpg",
	"/images/ph-two.jpg",
	"/images/feature-ayda.jpg",
	"/images/ph-allison.jpg",
	"/images/feature-shakerra.jpg",
	"/images/feature-savannah.jpg",
	"/images/jaxmodel-terra-beach.jpg", 
	"/images/feature-allison3.jpg",
	"/images/feature-farrin.jpg",
	"/images/jaxmodel-lauren-ferrari.jpg"
]

//set duration for each image
duration = 4;

//Please do not edit below
ads=[]; ct=0;
function switchAd() {
var n=(ct+1)%src.length;
if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
document["Winners"].src = ads[ct=n].src;
}
ads[n=(ct+1)%src.length] = new Image;
ads[n].src = src[n];
setTimeout("switchAd()",duration*1000);
}
function doLink(){
location.href = url[ct];
} onload = function(){
if (document.images)
switchAd();
}