setTimeout('swapChunk(0)',1000);  // do this because onLoad screws up Brothercakevar aryThumbs = new Array(7);aryThumbs[0] = "images/biography/history_sm.jpg";aryThumbs[1] = "images/biography/working_sm.png";aryThumbs[2] = "images/biography/working_sm.png";aryThumbs[3] = "images/biography/working_sm.png";aryThumbs[4] = "images/biography/working_sm.png";aryThumbs[5] = "images/biography/working_sm.png";aryThumbs[6] = "images/biography/sailing_sm.png";for (i=0; i < aryThumbs.length; i++) {  var preload = new Image();  preload.src = aryThumbs[i];}var aryImages = new Array(7);aryImages[0] = "images/biography/joe.jpg";aryImages[1] = "images/biography/joe.jpg";aryImages[2] = "images/biography/phil.jpg";aryImages[3] = "images/biography/marty.jpg";aryImages[4] = "images/biography/shanna.jpg";aryImages[5] = "images/biography/dave.jpg";aryImages[6] = "images/biography/sailing.png";for (i=0; i < aryImages.length; i++) {  var preload = new Image();  preload.src = aryImages[i];}var aryContentHead = new Array(7);aryContentHead[0] = 'History of DV Rasmussen &amp; Son';aryContentHead[1] = 'People';aryContentHead[2] = 'Phil Worman';aryContentHead[3] = 'Martin Kitzel';aryContentHead[4] = 'Shanna O&#39;Riley';aryContentHead[5] = 'About Dave';aryContentHead[6] = 'Fun with Dave and Family';var aryContentText = new Array(7);aryContentText[0] = '<span>My family has been building in the Bay Area for three generations, and my current company has been constructing high-end homes here for over 35 years.<br /><br />I was first introduced to the construction business in a small plumbing shop in San Francisco, where I would work side-by-side with my father on the weekends.  I remember those days well, as it was here that I began to absorb my father’s skills, and was able to see first-hand the honesty and integrity with which he approached everything.<br /><br />From kitchen remodels to restaurant remodels to building new homes in Marin County, my father patiently and carefully grew his business, and by the mid-seventies he and I had formed a successful partnership which was the start of D. V. Rasmussen & Son. <br /><br />Today, we have continued a tradition of a workplace that focuses on pride and skill to create a product that is superior.  Our team of dedicated professionals is here to serve our clients in the most personal and conscientious way possible. </span>'; aryContentText[1] = '<span> D. V. Rasmussen & Son maintains its tradition of a workplace that focuses on pride and skill to create a product that is superior. Our team of dedicated professionals is here to serve our clients in the most personal and conscientious way possible.</span>';aryContentText[2] = '<span> Project Manager<br />Phil was educated at Harvard University, and pursues a continuing interest in sustainable building and architecture.  He has over 20 years of experience in the construction industry, most of which has been spent in high-end residential remodel.  He has worked as a carpenter, cabinetmaker, foreman, project superintendent, and for the last several years, as a project manager, in work ranging from full-scale gut remodels of grand old San Francisco homes, to the tight-tolerance detailing of contemporary design, to a prototypical fiberglass and balsa-core house in Tiburon.  Phil is a Certified Green Building Professional.     </span>';aryContentText[3] = '';aryContentText[4] = '<span>Office Manager <br />With over 25 years in the industry, Shanna is a construction administration professional who has contributed her integrity and expertise to D.V. Rasmussen for the past 15 years.  She is at the heart of our small, efficient office, able to rationally manage a tremendous amount of information using the sophisticated accounting and monitoring systems that are a hallmark of our operation. Shanna carries a degree in business from Humboldt University.</span>';aryContentText[5] = '<span>Born in San Francisco and raised in Marin County, I have grown up with an appreciation for both the architectural heritage of my home town, and a love for the great outdoors that surround it.  <br /><br />Working side-by-side with my father, I learned building from the bottom up, and his skills and integrity inform every part of the business that I run today.  <br /><br />My father also helped to instill in me a life-long passion for sailing -- I have been a member of my local yacht club for many years (and on the board for the past six), and have been thrilled to sail in the past three Pacific Cup races to Hawaii. I am an avid tennis player, enjoy camping and traveling with my family, and am proud to carry on a tradition of great building that was started by my grandfather over a century ago. </span>'; aryContentText[6] = '<span>When I was a child, my parents had a boat that became our weekend cabin on the Bay, and it was here that I learned to fish and navigate.  Soon I was sailing my own homespun small boat on the Santa Venetia and San Rafael canals, exploring and reveling in the powers of the wind.  Today, that passion still exists.  As an active board member of my local yacht club, I have carried on the tradition that my parents began, and have introduced sailing to my son, David Jr., wife Betty, and kids, Anna and Charles. </span>';var aryThumbCaption = new Array(7);aryThumbCaption[0] = 'Working side by side with my father, I learned the building business from the bottom up.';aryThumbCaption[1] = 'Hans Rasmussen, circa 1908';aryThumbCaption[2] = 'Hans Rasmussen, circa 1908';aryThumbCaption[3] = 'Hans Rasmussen, circa 1908';aryThumbCaption[4] = 'Hans Rasmussen, circa 1908';aryThumbCaption[5] = 'Hans Rasmussen, circa 1908';aryThumbCaption[6] = 'Pacific Cup Race with kids in 2008';function swapChunk(tick) {  var thumbCaptionID = document.getElementById('thumb_caption');  var thumbCaption = aryThumbCaption[tick];  thumbCaptionID.innerHTML = thumbCaption;  var thumbID = document.getElementById('thumb_img');  var thumb = '<img id="thumb_holder" src="'+aryThumbs[tick]+'" />';  thumbID.innerHTML = thumb;    var contentHeadId = document.getElementById('content_head');  var contentHead = aryContentHead[tick];  contentHeadId.innerHTML = contentHead;  var contentId = document.getElementById('content_holder');  var content = aryContentText[tick];  contentId.innerHTML = content;    var imageID = document.getElementById('image');  var image = '<img id="image_holder" src="'+aryImages[tick]+'" />';  imageID.innerHTML = image;  }