function over(item) {
  item.style.backgroundColor='#000066';
  //item.getElementsByTagName("a")[0].style.color='#ffffff';
  if (document.all) {
    item.style.cursor='hand';
  } else {
    item.style.cursor='pointer';
  }
}
function out(item) {
  item.style.backgroundColor='#3399ff';
  //item.getElementsByTagName("a")[0].style.color='#ffffff';
}
function click(item) {
  document.location.replace(item.getElementsByTagName("a")[0].href);
}
function Ajouterrmesfavoris(url,title) {
  if (navigator.appName == 'Microsoft Internet Explorer' && parseInt(navigator.appVersion) >= 4) {
    window.external.AddFavorite(url,title);
  }
}
/* MakeHomepage (c) 1999-2001 Michel Plungjan michel@irt.org */

function init() {
sorryText = 'Sorry, not supported in this browser,'
sorryText+= '\n please change this setting manually';
isIE = false;
navVer = navigator.appVersion.toLowerCase();
ver = parseFloat(navVer);
IEPos = navVer.indexOf('msie');
if (IEPos !=-1) {
  isIE = true;
  ver = parseFloat(navVer.substring(IEPos+5,navVer.indexOf(';',IEPos)));
}
isIE5up = (isIE && ver >= 5);
}

function setNSHomePage(URL) { // must be signed
  netscape.security.PrivilegeManager.enablePrivilege("UniversalPreferencesWrite");
  navigator.preference('browser.startup.homepage',URL);
}

