////
//// support code for KlingStubbins
////

//
// required:
//   jquery.js (version 1.2.6+) (see jquery.com)
//   jquery.preloadImg.js

// support functions
//
function startFadeinSection() {
  document.writeln("<div class='divpageloadfadein'>");
}
function endFadeinSection() {
  document.writeln("</div>");
}


//
// jQuery ready
//
$(document).ready(function(){

//
  $("div.divpageloadfadein").fadeIn(1500);
  
}
);

