/*
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/digitalartsid.jpg" class="listingphoto" width="180" height="120" alt="Digital Arts Photography"></td><td class="stateboxcontainerright"><a href="digitalarts-lewiston-id-wedding-photographer.asp" class="listingname">Digital Arts Photography</a><div class="stateaddr">Lewiston ID - (208)791-3892</div>Idaho Photographer Mike McElhatton specializes in creative, artistic, and affordable wedding packages.  All packages include professionally processed prints, album, enlargements, and copyright-free CD.<br><br><a href="digitalarts-lewiston-id-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.digitalartsphotography.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/ericaroweid.jpg" class="listingphoto" width="122" height="120" alt="Erica Rowe Photography"></td><td class="stateboxcontainerright"><a href="ericarowe-boise-id-wedding-photographer.asp" class="listingname">Erica Rowe Photography</a><div class="stateaddr">Boise ID</div>Affordable. Creative. Everlasting. Truly unique images that tell the story of YOUR day! Packages start at only $550 and can be tailored to fit your needs.<br><br><a href="ericarowe-boise-id-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.ericaclicks.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/shanellenicolewi.jpg" class="listingphoto" width="180" height="120" alt="Shanelle Nicole Photography"></td><td class="stateboxcontainerright"><a href="../wisconsin/shanellenicole-oconomowoc-wi-wedding-photographer.asp" class="listingname">Shanelle Nicole Photography</a><div class="stateaddr">N95W34681 Townline Rd, Oconomowoc WI - (619)669-5082</div>Creative photography for Madison Wisconsin and surrounding areas.<br><br><a href="../wisconsin/shanellenicole-oconomowoc-wi-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.shanellenicolephotography.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'

primary[3]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/utahlensut2.jpg" class="listingphoto" width="200" height="140" alt="Utah Lens LLC"></td><td class="stateboxcontainerright"><a href="../utah/utahlens-salt-lake-city-ut-wedding-photographer.asp" class="listingname">Utah Lens LLC</a><div class="stateaddr">Salt Lake City UT - (801)820-0421</div>I have been shooting professionally since 2000 providing clients with a wide range of solutions on location or in a studio located conveniently near Salt Lake City, Utah.<br><br><a href="../utah/utahlens-salt-lake-city-ut-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.saltlakecityweddingphotography.net" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'


//SECONDARY STATE







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++
}
}
}

