addLoadListener(init);

function init(){

var lowerPageNum = "1" + pageNum;
//document.getElementById('menu' + pageNum).style.backgroundColor='#1C2953';
//document.getElementById('menu' + pageNum).style.color='#FFFFFF';
//document.getElementById('menua' + pageNum).style.backgroundColor='#1C2953';
//document.getElementById('menua' + pageNum).style.color='#FFFFFF';
//  function showmenu(page) {  // change the active page marker
	var menu1 = document.getElementById("navigation");
	menu1.getElementsByTagName("li")[pageNum].firstChild.nodeValue = "> ";
// }
return true;
}

addLoadListener(book);

function book() { // set the form focus
	document.book.email.focus();  // select first field
	
}

function addLoadListener(fn)
{
  if (typeof window.addEventListener != 'undefined')
  {
    window.addEventListener('load', fn, false);
  }
  else if (typeof document.addEventListener != 'undefined')
  {
    document.addEventListener('load', fn, false);
  }
  else if (typeof window.attachEvent != 'undefined')
  {
    window.attachEvent('onload', fn);
  }
  else
  {
    var oldfn = window.onload;
    if (typeof window.onload != 'function')
    {
      window.onload = fn;
    }
    else
    {
      window.onload = function()
      {
        oldfn();
        fn();
      };
    }
  }
}