//
// javascript file for the insertion of a footer at the bottom of each page 
//

// TOP BANNER

var footer_code =
  '<div class="footer">'
+ '  <a class="footer" href="./copyright.html" onmouseover="window.status=\'Copyright Statement\'; return true" onmouseout="self.status=\' \'; return true">'
+ '    &copy; Copyright, Tiberio Fanti - 2010'
+ '  </a>'
+ '</div>';

document.write(footer_code);
