/*
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 diffcontent=new Array() //vendor set

diffcontent[0]="<tr><td width='5' rowspan='2' height='120'><img src='../images/spacer.gif' border='0' height='120' width='5'></td><td background='../images/bluebg.gif' width='220' rowspan='2' height='120' align='center' class='borderbottomtopleft'><img src='../vendorphotos/regalphotographyne.jpg' border='1' width='134' height='120' alt='reGal Photography'></td><td background='../images/bluebg.gif' width='16' rowspan='2' height='120' valign='top' class='borderbottomtop'><img src='../images/spacer.gif' border='0' height='16' width='16'></td><td colspan='2' background='../images/bluebg.gif' width='475' height='75' class='bordertopright' valign='top'><font size='4' face='arial' color='#003399'><b><a href='regal_ne_wedding_photographer.asp'>reGal Photography</a></font></b><br>1417 So. 133rd St., Omaha NE - (402)-330-7649<br><br>With 29 years of experience in custom wedding photography, ReGaL Photography combines a traditional style of formal wedding portraiture with the contemporay look of black and white photojournalistic candids.</td><td width='5' rowspan='2' height='120'><img src='../images/spacer.gif' border='0' height='10' width='5'></td></tr><tr><td background='../images/bluebg.gif' height='45' width='320' class='borderbottom' valign='center'><b>SITE:&nbsp;&nbsp;<a href='regal_ne_wedding_photographer.asp'>www.regalphotography.com</a></b></td><td background='../images/bluebg.gif' height='45' width='200' align='left' class='borderbottomright' valign='center'><a href='regal_ne_wedding_photographer.asp'><img src='../images/contact.gif' border='0' width='162' height='40' alt='Contact reGal Photography'></a></td></tr><tr><td colspan='6'><img src='../images/spacer.gif' height='5' width='500'></td></tr>"

diffcontent[1]="<tr><td width='5' rowspan='2' height='120'><img src='../images/spacer.gif' border='0' height='120' width='5'></td><td background='../images/bluebg.gif' width='220' rowspan='2' height='120' align='center' class='borderbottomtopleft'><img src='../vendorphotos/ericfrancisphotography.jpg' border='1' width='178' height='120' alt='Eric Francis Photography'></td><td background='../images/bluebg.gif' width='16' rowspan='2' height='120' valign='top' class='borderbottomtop'><img src='../images/spacer.gif' border='0' height='16' width='16'></td><td colspan='2' background='../images/bluebg.gif' width='475' height='75' class='bordertopright' valign='top'><font size='4' face='arial' color='#003399'><b><a href='eric_francis_ne_wedding_photographer.asp'>Eric Francis Photography</a></font></b><br>PO Box 241701, Omaha NE - (402)968-4926<br><br>Award winning Wedding Photojournalism from and experienced photojournalist. With Eric photojournalism is not a 'style' but truly a way of looking at the world. Photojournalism is not just a fancy name for candids, but rather, true story telling with vision.</td><td width='5' rowspan='2' height='120'><img src='../images/spacer.gif' border='0' height='10' width='5'></td></tr><tr><td background='../images/bluebg.gif' height='45' width='320' class='borderbottom' valign='center'><b>SITE:&nbsp;&nbsp;<a href='eric_francis_ne_wedding_photographer.asp'>www.ericfrancisphotography.com</a></b></td><td background='../images/bluebg.gif' height='45' width='200' align='left' class='borderbottomright' valign='center'><a href='eric_francis_ne_wedding_photographer.asp'><img src='../images/contact.gif' border='0' width='162' height='40' alt='Check Availability for Eric Francis Photography'></a></td></tr><tr><td colspan='6'><img src='../images/spacer.gif' height='5' width='500'></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++
}
}
}