/*
Random-Order content script
By JavaScript Kit (http://www.javascriptkit.com)
This notice must stay intact for use
*/

//1) Specify content(s) to display and rotate
//   You can specify multiple "sets", each displayed in diff. areas of your page


var primary=new Array() //PRIMARY SET

primary[0]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/hawaiiphotomanhi.jpg" class="listingphoto" width="200" height="133" alt="David O. Photography"></td><td class="stateboxcontainerright"><a href="hawaii-photoman-kailua-kona-hi-wedding-photographer.asp" class="listingname">David O. Photography</a><div class="stateaddr">P.O.Box 390581, Kailua-Kona HI - (808)938-7321</div>David O. is one of Hawaii&rsquo;s top wedding photographers of choice. You can expect excellent professional photography consistently while being treated with integrity, respect and have fun doing it.<br><br><a href="hawaii-photoman-kailua-kona-hi-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="hawaii-photoman-kailua-kona-hi-wedding-photographer.asp#reviews" class="listinglink"><img src="../images/icon-reviews.png" class="listingicon">&nbsp;Read Reviews</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.davidophotography.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'

primary[1]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/missannmi2a.jpg" class="listingphoto" width="187" height="140" alt="Photos by Miss Ann"></td><td class="stateboxcontainerright"><a href="photosbymissann-kauai-hi-wedding-photographer.asp" class="listingname">Photos by Miss Ann</a><div class="stateaddr">Kauai (Proud to serve all islands): 1-888-690-1837</div>Miss Ann dares to be different.  She thrives on adventure and love... Those two combinations create an extraordinary effect people will envy and most of all -never forget! All-inclusive wedding packages from $775-3150 (including travel, your high resolution discs and copyrights).  Let&rsquo;s sit down and talk about your love story over a cup of coffee or a skydive!!<br><br><a href="photosbymissann-broomfield-co-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.photosbymissann.com/raves.php" target="new" class="listinglink"><img src="../images/icon-reviews.png" class="listingicon">&nbsp;Read Reviews</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.PhotosByMissAnn.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'

primary[2]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/vipweddinghi.jpg" class="listingphoto" width="200" height="120" alt="Creative Video & Photo Concepts"></td><td class="stateboxcontainerright"><a href="creativevideophoto-kailua-kona-hi-wedding-photographer.asp" class="listingname">Creative Video & Photo Concepts</a><div class="stateaddr">75-6130 Paulehia Street, Kailua-Kona HI - (808)990-2649</div>Angy brings a photojournalistic approach to each project, allowing her to capture events naturally and unobtrusively. Her creative skill produces unique and memorable photos tailored to the style of the event. From traditional formal portraits to casual and contemporary candids.<br><br><a href="creativevideophoto-kailua-kona-hi-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="creativevideophoto-kailua-kona-hi-wedding-photographer.asp#reviews" class="listinglink"><img src="../images/icon-reviews.png" class="listingicon">&nbsp;Read Reviews</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.vip-wedding-hawaii.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'


//SECONDARY STATE


var secondary=new Array() //SECONDARY SET

secondary[0]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/dellawhiteca2.jpg" class="listingphoto" width="200" height="140" alt="Della White Photography"></td><td class="stateboxcontainerright"><a href="../california/dellawhite-corona-ca-wedding-photographer.asp" class="listingname">Della White Photography</a><div class="stateaddr">11388 Discovery Way, Riverside CA - (951)732-9840 / (951)295-4626</div>Della White offers gorgeous and unique photography that focuses on capturing all of the moments and emotions of your big day! Beautiful AND Affordable wedding photography is possible - come see why over 100 brides have chosen Della White Photography since 2006!<br><br><a href="../california/dellawhite-corona-ca-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="../california/dellawhite-corona-ca-wedding-photographer.asp#reviews" class="listinglink"><img src="../images/icon-reviews.png" class="listingicon">&nbsp;Read Reviews</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.DellaWhite.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'




function randomorder(targetarray, spacing){

var randomorder=new Array()
var the_one
var z=0
for (i=0;i<targetarray.length;i++)
randomorder[i]=i

while (z<targetarray.length){
the_one=Math.floor(Math.random()*targetarray.length)
if (targetarray[the_one]!="_selected!"){
document.write(targetarray[the_one]+spacing)
targetarray[the_one]="_selected!"
z++
}
}
}

