/*
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/fowlernd.jpg" class="listingphoto" width="168" height="120" alt="Fowler Photography"></td><td class="stateboxcontainerright"><a href="fowler-bismarck-nd-wedding-photographer.asp" class="listingname">Fowler Photography</a><div class="stateaddr">Bismarck, North Dakota - (701)222-3040</div>Fowler Photography has been bringing the city of Bismarck beautiful, quality photography for the last 20 years. Providing a Complimentary Album Design Service where you will receive your full, complete album within two months of your wedding, containing all of the best images of the day.<br><br><a href="fowler-bismarck-nd-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.fowlerphoto.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/adorationmn.jpg" class="listingphoto" width="181" height="120" alt="Adoration Photography"></td><td class="stateboxcontainerright"><a href="../minnesota/adoration-monticello-mn-wedding-photographer.asp" class="listingname">Adoration Photography</a><div class="stateaddr">Monticello MN - (763)458-8150</div>A husband and wife team based out of Monticello, MN specializing in weddings & portraiture.<br><br><a href="../minnesota/adoration-monticello-mn-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.adorationphotomn.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++
}
}
}

