/*
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 nationwide=new Array() //vendor set


nationwide[0]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/marcpaganiphotographyla2.jpg" class="listingphoto" alt="Marc Pagani Photography"></td><td class="stateboxcontainerright"><a href="http://www.weddingphotousa.com/louisiana/marc_pagani_la_wedding_photographer.asp"  class="listingname">Marc Pagani Photography</a><div class="stateaddr">1534 Camp St., New Orleans, LA - (504)343-5364</div>When Marc Pagani Photography shoots your wedding, we artfully capture your day - but not in a stiff, pre-fabricated way - if we&rsquo;re gonna spend the day with you, we should have some fun. We document important moments that go unnoticed by most, either digitally or on film at VERY reasonable prices.<br><br><img src="../images/icon-photos.png" class="listingicon">&nbsp;&nbsp;<a href="http://www.weddingphotousa.com/louisiana/marc_pagani_la_wedding_photographer.asp" class="listinglink">View Photos</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.paganiphoto.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'

nationwide[1]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/missannmi2a.jpg" width="187" height="140" class="listingphoto" alt="Photos by Miss Ann"></td><td class="stateboxcontainerright"><a href="../weddingphotographer.asp?url=http://www.PhotosByMissAnn.com" target="new" class="listingname">Photos by Miss Ann</a><div class="stateaddr">Destination Weddings - 1-888-690-1837</div>Miss Ann dares to be different.  She thrives on adventure and love... Those two combinations create an extraordinary effect people will envy and most of all -never forget! All-inclusive wedding packages from $775-3150 (including travel, your high resolution discs and copyrights).  Let&rsquo;s sit down and talk about your love story over a cup of coffee or a skydive!!<br><br><a href="../weddingphotographer.asp?url=http://www.PhotosByMissAnn.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.photosbymissann.com/raves.php" target="new" class="listinglink"><img src="../images/icon-reviews.png" class="listingicon">&nbsp;Read Reviews</a>&nbsp;&nbsp;<a href="../weddingphotographer.asp?url=http://www.PhotosByMissAnn.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++
}
}
}

