/*
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 width='780' class='unbold' align='center'><a href='http://www.parkerphotographic.com' target='new'><img src='../imagesbanners/parker.jpg' alt='Parker Photographic - Wedding Photography Nationwide and Destinations' width='738' height='100' border='0'></a><br><br></td></tr>"

nationwide[1]="<tr><td width='780' class='unbold' align='center'><a href='http://www.weddingphotousa.com/louisiana/marc_pagani_la_wedding_photographer.asp'><img src='../imagesbanners/marc-pagani.jpg' alt='Marc Pagani Photography' width='738' height='100' border='0'></a><br><br></td>	</tr>"

nationwide[2]="<tr><td width='780' class='unbold' align='center'><a href='http://www.photosbymissann.com/Destination_Weddings.php' target='new'><img src='../imagesbanners/missann.jpg' alt='Photos by Miss Ann - Nationwide and Destination Weddings' width='738' height='100' border='0'></a><br><br></td></tr>"

nationwide[3]="<tr><td width='780' class='unbold' align='center'><a href='http://www.weddingphotousa.com/michigan/advantage_mi_wedding_photographer.asp'><img src='../imagesbanners/advantage.jpg' alt='Advantage Photography - Nationwide and Destination Weddings' width='738' height='100' border='0'></a><br><br></td></tr>"

nationwide[4]="<tr><td width='780' class='unbold' align='center'><a href='http://www.weddingphotousa.com/california/gregwyatt-fullerton-ca-wedding-photographer.asp'><img src='../imagesbanners/gregwyatt.gif' alt='Greg Wyatt Photography - California and Destination Weddings' width='738' height='100' border='0'></a><br><br></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++
}
}
}
