// JavaScript Document

// global navigation
function showMenu(){
document.write('<a href="index.html" class="menu">MAIN</a><a href="about.html" class="menu">ABOUT KINETICS</a><a href="projects.html" class="menu">PROJECTS</a><a href="articles.html" class="menu">ARTICLES</a><a href="newsletter.html" class="menu">NEWSLETTER</a><a href="contact.html" class="menu">CONTACT KINETICS</a>');
}

// random quotes
var sponsorImages = new Array() 
sponsorImages[0] = ' <br><br><br><br><table width="180" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td width="180" align="left" valign="top" class="quote">"Thank you for <u>all</u> of your help and especially getting the web site stuff ready by the June 30th event. Our work together has been fun! I know we are no where near done, but I want to specifically thank you for the rush to get things up and ready for the 30th."<br /><br />- Joanna Kohler,<br />&nbsp;&nbsp;Kohler Productions<br /><br /></td></tr></table>'
sponsorImages[1] = ' <br><br><br><br><table width="180" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td width="180" align="left" valign="top" class="quote">"Thanks a lot for helping me out this summer! I enjoyed my "classes" with you and appreciated your assistance with the MDU graphics. You are quite talented (and your knowledge of shortcuts seems infinite), so it was great to get your input!"<br /><br />- Letitia Englund,<br />&nbsp;&nbsp;Production Intern<br /><br /></td></tr></table>'
sponsorImages[2] = ' <br><br><br><br><table width="180" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td width="180" align="left" valign="top" class="quote">"I just saw the printed copy of the Wingspan brochure and <u>had</u> to write and thank you. It looks absolutely fabulous - because of all your great work and talent.<br><br>I really appreciate how accommodating you were in getting the work done on our schedule and how utterly unflappable you seemed. You made the project so easy. I sincerely hope we have the chance to work together on another project. It was really a treat working with you - and the results were outstanding!"<br /><br />- Randy Beard,<br />&nbsp;&nbsp;Wingspan Ministry<br /><br /></td></tr></table>'
sponsorImages[3] = ' <br><br><br><br><table width="180" border="0" align="center" cellpadding="0" cellspacing="0"><tr><td width="180" align="left" valign="top" class="quote">"What a great surprise it was to experience the video about me at the celebration of the 40th Anniversary of my ordination. I understand you were able to put that together in fairly short order. I am so grateful for your effort!<br><br>It all looks like something very simple, but I know from some of my own technical experience that it takes a lot of expertise and time to make it all happen. Thank you for your part in such a grand celebration!"<br /><br />- Pastor Paul A. Tidemann,<br />&nbsp;&nbsp;Saint Paul-Reformation<br /><br /></td></tr></table>'
var j = 0
var p = sponsorImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = sponsorImages[i]
}
var whichImage1 = Math.round(Math.random()*(p-1));
function showQuote(){
document.write(sponsorImages[whichImage1]);
}

// popup window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}