﻿//Do not take or copy this code it is illegal, delete it. If you need very low priced rotators
//that rotate like this, go to http://www.mooonbaby.com/scripts/absoluterotators.html/
//Copyright Mooonbaby.com. All rights reserved.


arr = new Array(
 ["<span style='color: rgb(300,0,180)'>divs</span>"],
 ["<span style='color: rgb(0,200,180)'>whatever</span>"],
 ["<span style='color: rgb(200,200,200)'>as you</span>"],
 ["<span style='color: rgb(200,200,200)'>normally do in</span>"],
 ["<span style='color: rgb(200,200,200)'>your pages, right here.</span>"],
 ["<span style='color: rgb(200,200,200)'>your pages.</span>"],
 ["<span style='color: rgb(200,200,200)'>Add any</span>"],
 ["<span style='color: rgb(200,200,200)'>font tags here.</span>"],
 ["<span style='color: rgb(200,200,200)'>p tags, span tags, font tags, etc.</span>"],
 ["<span style='color: rgb(0,200,180)'>Add your</span>"],
 ["<span style='color: rgb(153,0,180)'>text</span>"],
 ["<span style='color: rgb(300,0,180)'>just</span>"],
 ["<span style='color: rgb(0,200,180)'>as</span>"],
 ["<span style='color: rgb(200,200,200)'>you</span>"],
 ["<span style='color: rgb(200,200,200)'>normally do in</span>"],
 ["<span style='color: rgb(200,200,200)'>your pages.</span>"],
 ["<span style='color: rgb(200,200,200)'>Add any</span>"],
 ["<span style='color: rgb(200,200,200)'>font tags here.</span>"],
 ["<span style='color: rgb(200,200,200)'>p tags, span tags, font tags, etc.</span>"],
 ["<span style='color: rgb(200,200,200)'>60 text</span>"]// no comma at the end of last index 
);


var lasturl="0"; 
function completeimage(){   var randNum = getRand();
document.getElementById("arr").innerHTML = arr[randNum]; 
setTimeout('completeimage()',3000);  }  
function getRand () {   var rnum;   
var id=Math.round(Math.random()*(arr.length-1));  
 rnum = id;   if (rnum==lasturl) { rnum = getRand(); }   
lasturl=rnum;   return rnum;  } 
