function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://www.perksco.com/images/random/go_green.jpg"
myimages[2]="http://www.perksco.com/images/random/healthy_choices.jpg"
myimages[3]="http://www.perksco.com/images/random/benefits.jpg"
myimages[4]="http://www.perksco.com/images/random/hero.jpg"
myimages[5]="http://www.perksco.com/images/random/complete_breakroom_management.jpg"
myimages[6]="http://www.perksco.com/images/random/free_sample.jpg"
myimages[7]="http://www.perksco.com/images/random/recipes.jpg"
myimages[8]="http://www.perksco.com/images/random/top_ten.jpg"
myimages[9]="http://www.perksco.com/images/random/coffee_101.jpg"
myimages[10]="http://www.perksco.com/images/random/coffee_review.jpg"
myimages[11]="http://www.perksco.com/images/random/coffee_fun.jpg"
myimages[12]="http://www.perksco.com/images/random/sip.jpg"
myimages[13]="http://www.perksco.com/images/random/refer_perks.jpg"
myimages[14]="http://www.perksco.com/images/random/handheld_computer.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.perksco.com/extra/go_green.php"
imagelinks[2]="http://www.perksco.com/extra/healthy_choices.php"
imagelinks[3]="http://www.perksco.com/extra/benefits.php"
imagelinks[4]="http://www.perksco.com/extra/breakroom_hero.php"
imagelinks[5]="http://www.perksco.com/extra/complete_breakroom_management.php"
imagelinks[6]="http://www.perksco.com/extra/free_samples.php"
imagelinks[7]="http://www.perksco.com/extra/recipe.php"
imagelinks[8]="http://www.perksco.com/extra/top_ten.php"
imagelinks[9]="http://www.perksco.com/extra/coffee_education.php"
imagelinks[10]="http://www.perksco.com/extra/coffee_review.php"
imagelinks[11]="http://www.perksco.com/extra/coffee_fun.php"
imagelinks[12]="http://www.perksco.com/extra/sip.php"
imagelinks[13]="http://www.perksco.com/extra/refer_perks.php"
imagelinks[14]="http://www.perksco.com/extra/handheld_computer.php"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href="'+imagelinks[ry]+'"><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()