/*
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/annamoseria.jpg" class="listingphoto" width="80" height="120" alt="Anna Moser Photography"></td><td class="stateboxcontainerright"><a href="annamoser-clive-ia-wedding-photographer.asp" class="listingname">Anna Moser Photography</a><div class="stateaddr">Clive IA - (515)554-6479</div>Relax and let me do all the work. Your wedding day will be one of the best days of your life so enjoy it!! I Anna Moser will help you portray your special day through elegant photographs catered to your individual needs. Make your memories last forever! Call me or email me today to schedule a free consultation. Special discounts for Military!<br><br><a href="annamoser-clive-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.annamoserphotography.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/beckia.jpg" class="listingphoto" width="180" height="120" alt="Beck Photography"></td><td class="stateboxcontainerright"><a href="beck-mason-city-ia-wedding-photographer.asp" class="listingname">Beck Photography</a><div class="stateaddr">Mason City IA</div>Capturing details and moments of your special day are the two most important things to me.  Creatively capturing those moments is what sets me apart.<br><br><a href="beck-mason-city-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.james-beck.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/abrightimageia.jpg" class="listingphoto" width="200" height="120" alt="Brighter Image Photography"></td><td class="stateboxcontainerright"><a href="../weddingphotographer.asp?url=http://www.abrightimage.com" target="new" class="listingname">Brighter Image Photography</a><div class="stateaddr">Ottumwa IA - (641)682-7595</div>Our goal is to provide for you, not just &quot;Photography&quot; but photographic art. If you have the ideas, we will give you the photos that you will cherish for a lifetime.<br><br><a href="../weddingphotographer.asp?url=http://www.abrightimage.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.abrightimage.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="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!!! 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! **FREE** - basic retouching on ALL your pictures, so you look flawless in every shot!<br><br><a href="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


var secondary=new Array() //SECONDARY SET

secondary[0]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/jacksonforderermn.jpg" class="listingphoto" width="200" height="120" alt="Jackson Forderer Photography"></td><td class="stateboxcontainerright"><a href="../minnesota/jacksonforderer-wells-mn-wedding-photographer.asp" class="listingname">Jackson Forderer Photography</a><div class="stateaddr">606 4th Ave. S.W., Wells MN - (507)995-7784</div>Trained as a professional photojournalist, I strive to capture all the moments and excitement of your wedding day. With competitive packages starting at $1200, you will receive personal attention to your wishes. Whether you want traditional poses or a documentary approach, you will be satisfied.<br><br><a href="../minnesota/jacksonforderer-wells-mn-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="../minnesota/jacksonforderer-wells-mn-wedding-photographer.asp" class="listinglink"><img src="../images/icon-reviews.png" class="listingicon">&nbsp;Read Reviews</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.jacksonforderer.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++
}
}
}

