<!--
// Variables for random number generator.

today=new Date();
jran=today.getTime();
ia=9301;
ic=49297;
im=233280;

// Set to number of images available.

var number=11;

// Becomes generated random  number.

var random_number=0;

// Set to appropriate image name.

var image="";
var caption1="";
var caption2="";
var picture_width="";
var picture_height="";

// Random number generating function.

function randomizeNumber(){

jran = (jran*ia+ic) % im;
random_number=Math.ceil( (jran/(im*1.0)) *number);

// Set variable image equal to appropriate image file name. 

if (random_number==1){image="photos/sickPhotos/wik&Bau.jpg"; caption1="Ryan 'Wik' Winkelmann with the sky, despite teammate Matt Bauman's best efforts."; picture_width="321"; picture_height="450";}
if (random_number==2){image="photos/Sectionals05/images/img_0180.jpg"; caption1="Timeouts with Alex Smith. What better way to spend your 90 seconds than to listen to Alex's tales of adventure, anguish and deceit?"; picture_width="800"; picture_height="600";}
if (random_number==3){image="photos/sickPhotos/bj06.jpg"; caption1="Joe 'BJ' Sefton gets up."; picture_width="428"; picture_height="600";} 
if (random_number==4){image="photos/sickPhotos/sky.jpg"; caption1="Ray Illian brings down a goal for UW in a close prequarters game against UBC at 2005 Nationals."; picture_width="320"; picture_height="447";}
if (random_number==5){image="photos/sickPhotos/kaufmann.jpg"; caption1="Joe 'LJ' Kauffman with a huge bid at 2006 NW Regionals. How big? At this point he's on his way DOWN!"; picture_width="448"; picture_height="380";}
if (random_number==6){image="photos/sickPhotos/gabelayout.jpg"; caption1="Gabe Pedersen is a D machine. Keep your throws and your girlfriends far away from him."; picture_width="500"; picture_height="400";}
if (random_number==7){image="photos/sickPhotos/celebration.jpg"; caption1="NW Regionals 2005, Back-door finals vs. Cal-Berkeley"; picture_width="400"; picture_height="262";}
if (random_number==8){image="photos/sickPhotos/RaySkyAtNatties.jpg"; caption1="Know your receiver."; picture_width="600"; picture_height="460";}
if (random_number==9){image="photos/sickPhotos/ladd.jpg"; caption1="Jon Ladd with the sick grab."; picture_width="321"; picture_height="450";}
if (random_number==10){image="photos/sickPhotos/sefton.jpg"; caption1="Joe 'BJ' Sefton with the layout grab."; picture_width="450"; picture_height="321";}
if (random_number==11){image="photos/sickPhotos/dutchgrab.jpg"; caption1="Dutch Hixenbaugh making a clutch grab through two defenders"; picture_width="600"; picture_height="428";}

}
