/*
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/regalphotographyne.jpg" class="listingphoto" width="134" height="120" alt="reGal Photography"></td><td class="stateboxcontainerright"><a href="regal_ne_wedding_photographer.asp" class="listingname">reGal Photography</a><div class="stateaddr">1417 So. 133rd St., Omaha NE - (402)-330-7649</div>With 29 years of experience in custom wedding photography, ReGaL Photography combines a traditional style of formal wedding portraiture with the contemporay look of black and white photojournalistic candids.<br><br><a href="regal_ne_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.regalphotography.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/ericfrancisphotography.jpg" class="listingphoto" width="178" height="120" alt="Eric Francis Photography"></td><td class="stateboxcontainerright"><a href="eric_francis_ne_wedding_photographer.asp" class="listingname">Eric Francis Photography</a><div class="stateaddr">PO Box 241701, Omaha NE - (402)968-4926</div>Award winning Wedding Photojournalism from and experienced photojournalist. With Eric photojournalism is not a &lsquo;style&rsquo; but truly a way of looking at the world. Photojournalism is not just a fancy name for candids, but rather, true story telling with vision.<br><br><a href="eric_francis_ne_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.ericfrancisphotography.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/douglasgunderne.jpg" class="listingphoto" width="93" height="120" alt="Douglas Gunder Photography"></td><td class="stateboxcontainerright"><a href="../weddingphotographer.asp?url=http://www.douglasgunder.com" target="new" class="listingname">Douglas Gunder Photography</a><div class="stateaddr">Omaha NE - (402)571-2399</div>Douglas Gunder, Photographer specializes in providing classy photojournalistic wedding photography.<br><br><a href="http://www.douglasgunder.com" target="new" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.douglasgunder.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/extremephotoia.jpg" class="listingphoto" width="80" height="120" alt="EXTREME PHOTO"></td><td class="stateboxcontainerright"><a href="../iowa/extremephoto-west-des-moines-ia-wedding-photographer.asp" class="listingname">EXTREME PHOTO</a><div class="stateaddr">8929 Ashworth Road, West Des Moines IA - (515)250-2969</div>CONGRATULATIONS!!!<br>YOU&rsquo;VE JUST FOUND THE BEST KEPT PHOTOGRAPHY - DEAL - SECRET IN DES MOINES!<br>**FREE** - a full set of 4x6 prints of every pose - included free!<br>**FREE** - basic retouching on ALL your pictures, so you look flawless in every shot!<br><br><a href="../iowa/extremephoto-west-des-moines-ia-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.extremephoto.smugmug.com" 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++
}
}
}

