clients = new Image();
clients.src = "../imatges/clientes_petit.png";
clients2 = new Image();
clients2.src = "../imatges/clientes_petit2.png";
contacte = new Image();
contacte.src = "../imatges/contacte_petit.png";
contacte2 = new Image();
contacte2.src = "../imatges/contacte_petit2.png";
inici = new Image();
inici.src = "../imatges/inici_petit.png";
inici2 = new Image();
inici2.src = "../imatges/inici_petit2.png";
function canviaClients(control)
{
	if(!document.layers)
	{
   		if(control)
			document.getElementById('img_clients').src = clients2.src;
        else
 			document.getElementById('img_clients').src = clients.src;
    }
}

function canviaClients2(control)
{
	if(!document.layers)
	{
   		if(control)
			document.getElementById('img_clients2').src = clients2.src;
        else
 			document.getElementById('img_clients2').src = clients.src;
    }
}

function canviaContacte(control)
{
	if(!document.layers)
	{
   		if(control)
		{
			document.getElementById('img_contacte').src = contacte2.src;
		}
        else
		{       
			document.getElementById('img_contacte').src = contacte.src;
		}
    }
}

function canviaInici(control)
{
	if(!document.layers)
	{
   		if(control)
		{
			document.getElementById('img_inici').src = inici2.src;
		}
        else
		{       
			document.getElementById('img_inici').src = inici.src;
		}
    }
}