function initPage() {
   if (document.getElementById) {
      ie = navigator.appName == 'Microsoft Internet Explorer'
      /* no drop down for ie 5 */
      if ( (! ie) ||
            ( (ie) && (navigator.appVersion.search('MSIE 5') == -1) )
         ) {
            initMenu(ie);
      }
   }
}

function initStickit() {
	stickitwin = new Window('stickit', { parent:$('main'), top:0, right:0, width:400, height:250, closable:false, recenterAuto:false});
	stickitwin.getContent().update('<p style="margin:0;padding:5px;">Aus persönlichen Gründen ruht die biobite GmbH seit Ende 2007. Im Moment ist unklar wann und wie der Betreib wieder aufgenohmen wird.<br /><br />Kirchlinteln,<br />Anja Herbstreit</p>');
	stickitwin.show();
}