// random image jump script// basic infovar maxsize = 52;var iwidth =500;var iheight =375;// target, whereto, what, imagenamevar link = new makeArray(maxsize);link[0] = new LinkObj("new", "Lake Solitude, Grand Teton, Wyoming - July 03","images/01.jpg");link[1] = new LinkObj("new", "My oldest's (far left) first prom - May 03","images/02.jpg");link[2] = new LinkObj("new", "Cascade Canyon, Grand Teton, Wyoming - July 03","images/01.jpg");link[3] = new LinkObj("new", "The new building is almost done - April 03","images/04.jpg");link[4] = new LinkObj("new", "Old Main from my window - Feb 03","images/05.jpg");link[5] = new LinkObj("new", "My youngest, the volleyball player - March 02","images/06.jpg");link[6] = new LinkObj("new", "Tulips on the mall - April 03","images/07.jpg");link[7] = new LinkObj("new", "Lake Solitude, Grand Teton, Wyoming - Jul 03","images/08.jpg");link[8] = new LinkObj("new", "Furniture Design - Jan 87","images/09.jpg");link[9] = new LinkObj("new", "A 28 mile hike will do that - Jul 03","images/10.jpg");link[10] = new LinkObj("new", "Hard at work - Oct 02","images/11.jpg");link[11] = new LinkObj("new", "My youngest with friend - Jun 02","images/12.jpg");link[12] = new LinkObj("new", "Outside Yellowstone, Wyoming - Jul 03","images/13.jpg");link[13] = new LinkObj("new", "Our cat, Kipling - Mar 03","images/14.jpg");link[14] = new LinkObj("new", "My kids (center and right back) with cousins - Dec 02","images/15.jpg");link[15] = new LinkObj("new", "Mark and me at 3000 MSL, Julian, PA - Oct 12","images/16.jpg");link[16] = new LinkObj("new", "Early morning run with Sophie - Aug 02","images/17.jpg");link[17] = new LinkObj("new", "looking grisly - Jul 03","images/18.jpg");link[18] = new LinkObj("new", "Cousins - Dec 02","images/19.jpg");link[19] = new LinkObj("new", "Before and After - Jun 03","images/20.jpg");link[20] = new LinkObj("new", "Two years old - Aug 57","images/21.jpg");link[21] = new LinkObj("new", "Colette and Michelle - Mar 03","images/22.jpg");link[22] = new LinkObj("new", "Grandma Rozo - Oct 55","images/23.jpg");link[23] = new LinkObj("new", "Placido Rozo - Feb 56", "images/24.jpg");link[24] = new LinkObj("new", "My mom - Jun 56","images/25.jpg");link[25] = new LinkObj("new", "Dad and Mom, Aug 57","images/26.jpg");link[26] = new LinkObj("new", "Cousins - Dec 02","images/27.jpg");link[27] = new LinkObj("new", "Almost time to board - Dec 02","images/28.jpg");link[28] = new LinkObj("new", "Colette - Dec 02","images/29.jpg");link[29] = new LinkObj("new", "Colette with nephew and niece - Dec 02","images/30.jpg");link[30] = new LinkObj("new", "My Kids - Dec 02","images/31.jpg");link[31] = new LinkObj("new", "Save some for me! - Dec 02","images/32.jpg");link[32] = new LinkObj("new", "Eating out, Sausalito, CA - Mar 03","images/33.jpg");link[33] = new LinkObj("new", "Early flight home from SFO - Mar 03", "images/34.jpg");link[34] = new LinkObj("new", "Can we go home yet? - Mar 03","images/35.jpg");link[35] = new LinkObj("new", "San Francisco morning - Mar 03","images/36.jpg");link[36] = new LinkObj("new", "Plant, Muir Woods - Mar 03","images/37.jpg");link[37] = new LinkObj("new", "Early morning run with Sophie - Oct 03","images/38.jpg");link[38] = new LinkObj("new", "Gas Station near home - Oct 03","images/39.jpg");link[39] = new LinkObj("new", "Early Morning Fog - Oct 03","images/40.jpg");link[40] = new LinkObj("new", "Grandma Legat going strong at 90 - Oct 03","images/41.jpg");link[41] = new LinkObj("new", "Grandpa Legat on Percheron, Canada - Jun 1923","images/42.jpg");link[42] = new LinkObj("new", "My mom with her parents, Kenosha, WI - Mar 1934","images/43.jpg");link[43] = new LinkObj("new", "Ridge Day tow - Oct 03","images/44.jpg");link[44] = new LinkObj("new", "My Kids and Sophie - Dec 03", "images/45.jpg");link[45] = new LinkObj("new", "Building outside my window - Dec 03", "images/46.jpg");link[46] = new LinkObj("new", "Lisa and Sarah - Dec 02", "images/47.jpg");link[47] = new LinkObj("new", "Grandma and my sisters - Dec 02", "images/48.jpg");link[48] = new LinkObj("new", "Angela with her great grand kids - Dec 02", "images/49.jpg");link[49] = new LinkObj("new", "My parents with their grand kids - Dec 02", "images/50.jpg");link[50] = new LinkObj("new", "The Rozo Clan - Dec 02", "images/51.jpg");link[51] = new LinkObj("new", "Waiting for the start - Oct 03", "images/52.jpg");var n = 0;function LinkObj(target, description, img) {  this.target = (target != refresh) ? target : "_self";  this.description = description;  this.image = img;  return this;}function refresh(x) {  if (link[x].target != refresh)    window.open(link[x].target);  else    location.href = link[x].target;}function makeArray(size) {  this.length = size;  return this;}function showStatus(x) {  window.status = link[x].description;}function getImageName(x) {  return link[x].image;}while (1) {  n = Math.round(Math.random() * 52);  if (n >= 0 && n < maxsize)    break;}var jump = "<a href='newme.html'OnMouseOver=\"showStatus(" + n + ");return true\" ";jump += "OnMouseOut=\"window.status=''\">";jump += "<img border=0 align=top width=" + iwidth + " height=" + iheight + "name=\"bannerimg\" src=\"" + getImageName(n) + "\"></a>";