/*
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/donnaedmondsonwv.jpg" class="listingphoto" width="200" height="120" alt="Donna Edmondson Photography"></td><td class="stateboxcontainerright"><a href="donna-edmondson-charleston-wv-wedding-photographer.asp" class="listingname">Donna Edmondson Photography</a><div class="stateaddr">(304)342-1052 Charleston, WV / (615)210-2351 Nashville, TN</div>Donna has twenty years of experience in the professional modeling and photography industry.Her weddings have been featured in several publications of &#34; I DO &#34; for Brides.We feel sure after viewing her website you&rsquo;ll see for yourself what makes her style truly unique.<br><br><a href="donna-edmondson-charleston-wv-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.donnasweddings.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/larkinswv.jpg" class="listingphoto" width="80" height="120" alt="Larkin&rsquo;s Photography"></td><td class="stateboxcontainerright"><a href="larkins-princeton-wv-wedding-photographer.asp" class="listingname">Larkin&rsquo;s Photography</a><div class="stateaddr">HC 71 Box 227, Princeton WV - (304)952-7851 / (304)837-7440</div>Our local coverage is Princeton, Bluefield, Beckley, and Charleston, West Virginia. We offer two photographer packages. With two photographers we are able to see things from many different perspectives and capture the complete story of your day. Unlimited number of images captured by two photographers, each carrying backup camera equipment and using the latest digital technology. We offer individual photographer packages as well as our two photographer packages.<br><br><a href="larkins-princeton-wv-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.larkinsphotography.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/photosbykathyva.jpg" class="listingphoto" width="86" height="130" alt="Photographs by Kathy"></td><td class="stateboxcontainerright"><a href="../virginia/photosbykathy-roanoke-va-wedding-photographer.asp" class="listingname">Photographs by Kathy</a><div class="stateaddr">126 10-1/2 Street SE, Roanoke VA - (540)815-0518</div>Special Discount offered every month - Call Kathy at 540-815-0518 to find out this months special.<br>I have God-Given talent and it is blessed by God to share my talent with my clients.  My goal is to save bride/groom money while providing wonderful, spontaneous, colorful photographs.<br>Free 8 x 10 with frame, Free Photo CD, Free photo enhancement, 50&#37; disc on pre-wedding formals if book wedding.<br><br><a href="../virginia/photosbykathy-roanoke-va-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.photographsbykathy.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++
}
}
}

