/*
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/stoilovvt.jpg" class="listingphoto" width="200" height="120" alt="Stoilov Studio"></td><td class="stateboxcontainerright"><a href="stoilov-burlington-vt-wedding-photographer.asp" class="listingname">Stoilov Studio</a><div class="stateaddr">Serving Vermont - (802)318-5513</div>I strive to be a storyteller, not just an historian documenting the &quot;must have moments&quot;. My pricing is very flexible and affordable. DVD with all shots in hi-res ready to print is always included.<br><br><a href="stoilov-burlington-vt-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="stoilov-burlington-vt-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.stoilovstudio.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/nathanmoreaunh3.jpg" class="listingphoto" width="200" height="140" alt="Nathan Moreau Photography"></td><td class="stateboxcontainerright"><a href="../newhampshire/nathanmoreau-litchfield-nh-wedding-photographer.asp" class="listingname">Nathan Moreau Photography</a><div class="stateaddr">Serving Vermont &amp; Beyond</div>MODERN. VIBRANT. FASHIONABLE. See why Nathan Moreau has become one of the most sought after wedding photographers in New England and beyond.<br><br><a href="../newhampshire/nathanmoreau-litchfield-nh-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="../newhampshire/nathanmoreau-litchfield-nh-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.nathanmoreauphoto.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++
}
}
}

