$.preloadImages.addA(['images/contact02.png','images/fondBoutons.png','images/fermer02.gif','images/textePlus02.png','images/texteMoins02.png','images/mail02.png','images/imprimer02.png','images/favoris02.png','images/haut02.png','images/perso02.png','images/pro02.png','images/realisations02.png','images/marques02.png','images/mentions02.png','images/calculette02.png','images/bulle02.png','images/persoAccueil02.png','images/proAccueil02.png']);
$(function () {
   var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
   if (IE6 === false) {
      return;
   }
   var png = null;

   var pngs = ["contact", "particuliers", "professionnels", "realisations",
      "marques", "mentions", "simulation"];
   for (var i = 0; i < pngs.length; i++) {
      png = document.getElementById(pngs[i]);
      if (!png) { continue; }
      png.onmouseover = function () { this.className = 'over'; };
      png.onmouseout  = function () { this.className = ''; };
   }

   // Liens actions
   var haut = document.getElementById('tabActionHaut');
   if (!haut) {
      return;
   }
   var bas = document.getElementById('tabActionBas');
   var actions = haut.getElementsByTagName('a');
   for (i = 0; i < actions.length; i++) {
      png = actions[i];
      png.onmouseover = function () { this.className += 'Over'; };
      png.onmouseout  = function () { this.className = this.className.substr(0, this.className.length - 4); };
   }
   actions = bas.getElementsByTagName('a');
   for (i = 0; i < actions.length; i++) {
      png = actions[i];
      png.onmouseover = function () { this.className += 'Over'; };
      png.onmouseout  = function () { this.className = this.className.substr(0, this.className.length - 4); };
   }
});