
/*
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/imagesphotographyco.jpg' border='1' width='89' height='120' alt='Images 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='../colorado/images-parker-co-wedding-photographer.asp'>Images Photography</a></font></b><br>19095 E. Oak Creek Place, Parker CO - (720)851-0730<br><br>Packages starting at $400, travel within all areas of Colorado. Over 20 years of experience in photography.  Two Photographers and One Photoshop master makes up Images Photography.<br><br></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='../colorado/images-parker-co-wedding-photographer.asp'>www.3Rabbits.com</a></b></td><td background='../images/bluebg.gif' height='45' width='200' align='left' class='borderbottomright' valign='center'><a href='../colorado/images-parker-co-wedding-photographer.asp'><img src='../images/contact.gif' border='0' width='162' height='40' alt='Check Availability for Images 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/ericandmoriahco1.jpg' border='1' width='200' height='120' alt='Eric & Moriah 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='../colorado/ericandmoriah-fort-collins-co-wedding-photographer.asp'>Eric & Moriah Photography</a></font></b><br>Fort Collins CO - (970)227-3652<br><br>Eric & Moriah Photography is a Husband & Wife photo artistry team from Northern Colorado. We specialize in one of a kind wedding and lifestyle portraiture images. Available for travel. Members, Professional Photographers of America. Coverage begins at $1200.<br><br></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='../colorado/ericandmoriah-fort-collins-co-wedding-photographer.asp'>www.ericandmoriahphotography.com</a></b></td><td background='../images/bluebg.gif' height='45' width='200' align='left' class='borderbottomright' valign='center'><a href='../colorado/ericandmoriah-fort-collins-co-wedding-photographer.asp'><img src='../images/contact.gif' border='0' width='162' height='40' alt='Check Availability for Eric & Moriah Photography'></a></td></tr><tr><td colspan='6'><img src='../images/spacer.gif' height='5' width='500'></td></tr>"

//NATIONWIDE ADVERTISERS


var advertisers=new Array() //NATIONWIDE ADVERTISERS set

advertisers[0]="&nbsp;"





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++
}
}
}
