// Image alternate par onmouseover

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (  (navigator.appName.substring(0,9) == 'Microsoft') && (navigator.appVersion.substring(0,1) >= '4')  || 
      (navigator.appName.substring(0,9) == 'Netscape')  && (navigator.appVersion.substring(0,1) >= '3')  )
         {
         	version = "n3";
         } else {
         	 version = "old";
         }

if (version == "n3"){
img1on = new Image();
img1off  = new Image();
img2on = new Image();
img2off  = new Image();
img3on = new Image();
img3off  = new Image();
img4on = new Image();
img4off  = new Image();
img5on = new Image();
img5off  = new Image();
img6on = new Image();
img6off  = new Image();


img1on.src = "images/but_accb.jpg";
img1off.src = "images/but_acca.jpg";
img2on.src = "images/but_trab.jpg";
img2off.src = "images/but_traa.jpg";
img3on.src = "images/but_contb.jpg";
img3off.src = "images/but_conta.jpg";
img4on.src = "images/but_actub.jpg";
img4off.src = "images/but_actua.jpg";
img5on.src = "images/but_formb.jpg";
img5off.src = "images/but_forma.jpg";
img6on.src = "images/but_accmb.jpg";
img6off.src = "images/but_accma.jpg";

}
else
{
img1on = 0; img1off  = 0;
img2on = 0; img2off  = 0;
img3on = 0; img3off  = 0;
img4on = 0; img4off  = 0;
img5on = 0; img5off  = 0;
img6on = 0; img6off  = 0;


}

function imageOn(imgOn,imageNubOn){
	if (version == "n3"){document.images[imageNubOn].src = imgOn.src;}
	}

function imageOff(imgOff, imageNubOff){
	if (version == "n3"){document.images[imageNubOff].src = imgOff.src;}
	}