// JavaScript Document


<!--
/*
Random link button- By JavaScript Kit (http://javascriptkit.com)
Over 300+ free scripts!
This credit MUST stay intact for use
*/

//specify random links below. You can have as many as you want
var randomwebsites=new Array()

randomwebsites[0]="http://www.katepurcelldesign.com/websites/chicago-consultation.php"
randomwebsites[1]="http://www.katepurcelldesign.com/websites/reach.php"
randomwebsites[2]="http://www.katepurcelldesign.com/websites/duke.php"
randomwebsites[3]="http://www.katepurcelldesign.com/websites/foundation-burma.php"
randomwebsites[4]="http://www.katepurcelldesign.com/websites/rff.php"


function randomwebsite(){
window.location=randomwebsites[Math.floor(Math.random()*randomwebsites.length)]
}



var randomprint=new Array()

randomprint[0]="http://www.katepurcelldesign.com/print/war-on-weather.php"
randomprint[1]="http://www.katepurcelldesign.com/print/jdg-cd.php"
randomprint[2]="http://www.katepurcelldesign.com/print/snack-packers.php"
randomprint[3]="http://www.katepurcelldesign.com/print/shakas.php"


function randomprintitem(){
window.location=randomprint[Math.floor(Math.random()*randomprint.length)]
}



var randomphotos=new Array()

randomphotos[0]="http://www.katepurcelldesign.com/photos/lifeless.php"
randomphotos[1]="http://www.katepurcelldesign.com/photos/banana-bike.php"
randomphotos[2]="http://www.katepurcelldesign.com/photos/rob-margot.php"
randomphotos[3]="http://www.katepurcelldesign.com/photos/paper.php"
randomphotos[4]="http://www.katepurcelldesign.com/photos/chopsticks.php"
randomphotos[5]="http://www.katepurcelldesign.com/photos/paper.php"


function randomphoto(){
window.location=randomphotos[Math.floor(Math.random()*randomphotos.length)]
}





//-->


<!--Uncomment below to use a regular text link instead <a href="javascript:randomlink()">Random Link</a> -->
