/*
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/magektx.jpg" class="listingphoto" width="80" height="120" alt="Magek Photography"></td><td class="stateboxcontainerright"><a href="magekphoto-houston-tx-wedding-photographer.asp" class="listingname">Magek Photography</a><div class="stateaddr">Houston TX - (832)794-8616 / (281)581-9359</div>We are passionate about photography!! Let us capture your &rdquo;magek&rdquo; moments! Unlimited wedding day coverage. Impeccable quality at affordable prices, and no travel fees in Houston, San Antonio, Austin, and surrounding areas. Check out our website for lots of pictures!!!<br><br><a href="magekphoto-houston-tx-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.magekphoto.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/gregblombergtx2a.jpg" class="listingphoto" width="185" height="140" alt="Greg Blomberg Inc"></td><td class="stateboxcontainerright"><a href="blomberg-dallas-tx-wedding-photographer.asp" class="listingname">Greg Blomberg Inc</a><div class="stateaddr">1921.5 Greenville Ave, Suite A, Dallas TX - (214)549-0001</div>Greg Blomberg&rsquo;s award winning wedding and lifestyle photography has been highly sought after over the past 20 years. Greg&rsquo;s unique and contemporary approach, in combination with his comfortable style, creates images that truly capture the emotional essence of his exclusive clientele.<br><br><a href="blomberg-dallas-tx-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.gregblomberg.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/ronnielascanotx.jpg" class="listingphoto" width="82" height="120" alt="Ronnie Lascano Photography"></td><td class="stateboxcontainerright"><a href="ronnielascano-dallas-tx-wedding-photographer.asp" class="listingname">Ronnie Lascano Photography</a><div class="stateaddr">Dallas TX - (817)475-1746</div>CONTEMPORARY | NATURAL | CUSTOM | PERSONAL | |NATURAL LIGHT | ON LOCATION PHOTOGRAPHY IN DFW AREA<br>portraits.engagement.weddings.babies.dogs.nature.<br><br>CONTACT NOW FOR SPECIAL WEDDINGPHOTOUSA DISCOUNT!!<br><br><a href="ronnielascano-dallas-tx-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="ronnielascano-dallas-tx-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.ronnielascano.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/34studiotx.jpg" class="listingphoto" width="200" height="120" alt="34Studio Dallas, Texas Wedding Photography"></td><td class="stateboxcontainerright"><a href="34studio-dallas-tx-wedding-photographer.asp" class="listingname">34Studio Dallas, TX Wedding Photography</a><div class="stateaddr">Dallas TX</div>Dallas wedding photographer 34 studio. Fashion style wedding photography based in Dallas, TX. We have photographers with years of experience in fashion and weddings. Although our studio is located in Dallas TX, we are available to travel worldwide.<br><br><a href="34studio-dallas-tx-wedding-photographer.asp" class="listinglink"><img src="../images/icon-photos.png" class="listingicon">&nbsp;View Photos</a>&nbsp;&nbsp;<a href="34studio-dallas-tx-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.34studio.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/schreckhisear.jpg" class="listingphoto" width="200" height="120" alt="Schreckhise Wedding Photography"></td><td class="stateboxcontainerright"><a href="../arkansas/schreckhise-rogers-ar-wedding-photographer.asp" class="listingname">Schreckhise Wedding Photography</a><div class="stateaddr">8300 Autumn Run, Rogers AR - (479)435-0640</div>Schreckhise Wedding Photography documents the pure moments of people in love. Each couple is an inspiration for creating truly classic portraits...those destined to stir the emotions for many years to come.<br><br><a href="../arkansas/schreckhise-rogers-ar-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.schreckhisephotography.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++
}
}
}

