// RollOver.js
// Canvia les imatges segons els events del ratolí
	var version=4;
	if (navigator.userAgent.indexOf("Mozilla/4.0")!=-1) version=4;
	else if (navigator.userAgent.indexOf("Mozilla/3.0")!=-1) version=3;
	else if (navigator.userAgent.indexOf("Mozilla/2.0")!=-1) version=2;
	else if (navigator.userAgent.indexOf("MSIE")!=-1) version=1;

	if ( version==3 || version==4 )
		{
		boto01 = new Image();boto01f= new Image();
		boto02 = new Image();boto02f= new Image();
		boto03 = new Image();boto03f= new Image();
		boto04 = new Image();boto04f= new Image();
		boto05 = new Image();boto05f= new Image();
		boto06 = new Image();boto06f= new Image();
		boto07 = new Image();boto07f= new Image();
		boto08 = new Image();boto08f= new Image();
		boto09 = new Image();boto09f= new Image();



		boto01.src = "./Imatges/1.gif";	boto01f.src= "./Imatges/1a.gif";
		boto02.src = "./Imatges/2.gif";	boto02f.src= "./Imatges/2a.gif";
		boto03.src = "./Imatges/3.gif";	boto03f.src= "./Imatges/3a.gif";
		boto04.src = "./Imatges/4.gif";	boto04f.src= "./Imatges/4a.gif";
		boto05.src = "./Imatges/5.gif";	boto05f.src= "./Imatges/5a.gif";
		boto06.src = "./Imatges/6.gif";	boto06f.src= "./Imatges/6a.gif";
		boto07.src = "./Imatges/7.gif";	boto07f.src= "./Imatges/7a.gif";
		boto08.src = "./Imatges/8.gif";	boto08f.src= "./Imatges/8a.gif";
		boto09.src = "./Imatges/9.gif";	boto09f.src= "./Imatges/9a.gif";
		}

	function dibu(num)
	{
	   if (version==3 || version==4)
		{
      	if (num == "1") document.images[1].src = boto01.src;
		if (num == "11") document.images[1].src = boto01f.src;
      	if (num == "2") document.images[2].src = boto02.src;
		if (num == "21") document.images[2].src = boto02f.src;
      	if (num == "3") document.images[3].src = boto03.src;
		if (num == "31") document.images[3].src = boto03f.src;
      	if (num == "4") document.images[4].src = boto04.src;
		if (num == "41") document.images[4].src = boto04f.src;
      	if (num == "5") document.images[5].src = boto05.src;
		if (num == "51") document.images[5].src = boto05f.src;
      	if (num == "6") document.images[6].src = boto06.src;
		if (num == "61") document.images[6].src = boto06f.src;
      	if (num == "7") document.images[7].src = boto07.src;
		if (num == "71") document.images[7].src = boto07f.src;
      	if (num == "8") document.images[8].src = boto08.src;
		if (num == "81") document.images[8].src = boto08f.src;
		if (num == "9") document.images[9].src = boto09.src;
		if (num == "91") document.images[9].src = boto09f.src;

	   }
	}
//--------------------- Final de Fitxer
