function startUp() {
	initDHTMLAPI();
	updateLinks();
	styleSwitcherOnLoad();
}

function startDown() {

  // Store the active style sheet...
  var title = getActiveStyleSheetTitle();
  
  // But NOT if it's the print css..
  if (getActiveStyleSheetTitle()!="print") {
  	createCookie("style", title, 365);
  }
 
}


window.onload = startUp;
window.onunload = startDown;

