/*
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/randyleewa.jpg" class="listingphoto" width="179" height="120" alt="Randy Lee Photography"></td><td class="stateboxcontainerright"><a href="randy-lee-lake-stevens-wa-wedding-photographer.asp" class="listingname">Randy Lee Photography</a><div class="stateaddr">8730 13th ST NE, Lake Stevens WA - (425)359-5172</div>We love weddings and using our experience and artistic touch to make every photo come to life! See why so many brides love our photos and the experience that they will have forever. All packages include negatives and custom editing.<br><br><a href="randy-lee-lake-stevens-wa-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="randy-lee-lake-stevens-wa-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.randyleephotography.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/stockstate3.jpg" class="listingphoto" width="181" height="120" alt="Wedding Presence Photography"></td><td class="stateboxcontainerright"><a href="../oregon/weddingpresence-lake-oswego-or-wedding-photographer.asp" class="listingname">Wedding Presence Photography</a><div class="stateaddr">3220 Edgemont Rd, Lake Oswego OR - (503)201-2650</div>We are based in Oregon and provide beautiful wedding photography to discerning couples in the Pacific Northwest as well as the rest of the world.  Having been featured on NBC Televsion, we travel well and are highly sought after as Destination Wedding Photographers.<br><br><a href="../oregon/weddingpresence-lake-oswego-or-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.weddingpresence.com" target="new" class="listinglink"><img src="../images/icon-web.png" class="listingicon">&nbsp;See Website</a></td></tr>'

secondary[1]='<tr><td class="stateboxcontainerleft"><img src="../vendorphotos/nickcoronaca2.jpg" class="listingphoto" width="185" height="140" alt="Nick Corona Photography"></td><td class="stateboxcontainerright"><a href="../california/nick-corona-norco-ca-wedding-photographer.asp" class="listingname">Nick Corona Photography</a><div class="stateaddr">3598 Arboretum Cir., Corona CA - (951)415-5313</div>From Weddings, Engagements, to Family Photos, Nick Corona Photography is dedicated to capturing memories that will last a lifetime. Our premiere style of photography is assured to capture and preserve your special occasion like none other. We don&rsquo;t just take photos... we capture memories!<br><br><a href="../california/nick-corona-norco-ca-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.nickcoronaphotography.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++
}
}
}

