/*
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/melissalaggisak.jpg" class="listingphoto" width="200" height="120" alt="Melissa Laggis The Picture Lady Photography"></td><td class="stateboxcontainerright"><a href="melissa_laggis_wasilla_ak_wedding_photographer.asp" class="listingname">The Picture Lady Photography</a><div class="stateaddr">Wasilla AK - (907)-357-LADY (5239)</div>Melissa has a passion for creating timeless presentations of her clients lives today. From weddings... to births... to &lsquo;the growing years&rsquo;... and on to senior portraits Melissa feels honored to be allowed to photograph and document your life&rsquo;s most precious moments and memories.<br><br><a href="melissa_laggis_wasilla_ak_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.thepicturelady.biz" 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/anchoragephotographyak.jpg" class="listingphoto" width="180" height="120" alt="Chugach Peaks Photography"></td><td class="stateboxcontainerright"><a href="anchorage_photography_ak_wedding_photographer.asp" class="listingname">Chugach Peaks Photography</a><div class="stateaddr">P.O. Box 211922 - 99521, Anchorage AK - (907)301-9400</div>Chugach Peaks Photography focuses on creating unique images of Alaskan weddings. Visit our website and browse our online gallery and see how our images are as unique as the clients themselves. We won&rsquo;t make you do any unnatural poses or distract you from having fun!<br><br><a href="anchorage_photography_ak_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.ChugachPeaks.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++
}
}
}

