<!-- Begin
function makeArray(q){
for(i=1 ; i < q ; i++){this[i]=0}}
w=1;
howmanysites=14; // How many sites are listed below?

Sites = new makeArray(howmanysites);

<!-- STEP TWO: Use the pattern:  url~Site Title|Description for links  -->

Sites[1] = "http://www.adameve.com/AffiliateEntry.asp?eid=44&aid=3584A~Lingerie|Women's Lingerie, thongs & erotic apparel";
Sites[2] = "http://sex-toys.health-shopper.net~Toy Shoppe |Sex Toys, Condoms & Lubricants";
Sites[3] = "http://viagra.health-shopper.net~Viagra|Regain Your gourmet Potency to go swinging!";
Sites[4] = "http://sail.to/hotlove~Hot Love|Need Real Love?  Sail to HOT LOVE!";
Sites[5] = "http://singles.datingswingers.net/adult_friend_finder.html~Adult Friends|10 million sex partners can't be wrong!!";
Sites[6] = "http://singles.datingswingers.net/swingers_town_usa.htm~Swing Town|After phuquing everyone - every town is yours!";
Sites[7] = "http://www.adameve.com/AffiliateEntry.asp?eid=24&aid=3584A~Clothing!|You Need Something to Wear on your SEX Date!";
Sites[8] = "http://www.adameve.com/AffiliateEntry.asp?eid=19&aid=3584~Sex Toys?!|The Biggest Selection at the Best Prices!!";
Sites[9] = "http://www.adameve.com/AffiliateEntry.asp?aid=3584A&eid=239~“Vibrators”|Get proper results on this Keyword Search";
Sites[10] = "http://www.adameve.com/AffiliateEntry.asp?eid=29&aid=3584A~“ANAL”|Get nasty results on this Keyword Search!";
Sites[11] = "http://www.adameve.com/AffiliateEntry.asp?eid=30&aid=3584A~“KINK”|Get kinky results on this Keyword Search!!";
Sites[12] = "http://www.adameve.com/AffiliateEntry.asp?eid=25&aid=3584A~“Condoms”|Protect every Penis from that raging oriface!";
Sites[13] = "http://www.adameve.com/AffiliateEntry.asp?eid=429&aid=3584A~“Cock Rings”|Gate Crashers! Enhance your Battering Ram!";
Sites[14] = "http://www.adameve.com/AffiliateEntry.asp?eid=27&aid=3584A~“LUBE”|Oceans of lube - Lubricate your every desire!";

function showSites() {
if (w > howmanysites) { w=1; };
var string=Sites[w] + "";
var split1=string.indexOf("~");
var split2=string.indexOf("|");
var url=string.substring(0,split1);
var name=string.substring(split1 + 1,split2);
var word=string.substring(split2 + 1,string.length);
document.form.url.value=url;
document.form.name.value=name;
document.form.word.value=word;
w+=1;
window.setTimeout('showSites()',3000);

// You can change the speed!  3000 = 3 sec delay.  5000 = 5 sec delay, etc. 

}
function visitSite() {
window.location=document.form.url.value;
}
// End -->
