// This block of code demonstrates the best method to attach events
// Read this for more information:
// http://www.quirksmode.org/js/introevents.html#link8

function init () {
  // do something here
  // alert ("we've loaded!");
}
window.onload = init;
if (window.captureEvents) window.captureEvents(Event.LOAD);