//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.



page = new Array(
["http://www.c21realtyspecialists.com/images/backgrounds/lanikai.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/beachresort.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/waikikinight.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/blacksand.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/surfer.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/waikikitower.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/orangeroof.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/graybuilding.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/kauai.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/tararoot.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/orchid.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/beachhouse.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/patio.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/waikikiwater.jpg"],
["http://www.c21realtyspecialists.com/images/backgrounds/bigisland.jpg"]// no comma at the end of last index
);

var lasturl="0";
function pageimg(){   var randNum = getRand();
document.body.style.background='url('+ page[randNum] +')';
document.body.style.backgroundRepeat='no-repeat';
document.body.style.backgroundPosition='top center'; 
setTimeout('pageimg()',15000);  }
function getRand () {   var rnum;
var id=Math.round(Math.random()*(page.length-1));
 rnum = id;   if (rnum==lasturl) { rnum = getRand(); }
lasturl=rnum;   return rnum;  }