function swapImageSolucions(id)
{
	switch (id)
	{
		case 'imgParticulars':
			document.getElementById('imgParticulars').src = "../img/ico1b.gif";
			break;
		case 'imgComercos':
			document.getElementById('imgComercos').src = "../img/ico2b.gif";
			break;
		case 'imgInstitucions':
			document.getElementById('imgInstitucions').src = "../img/ico3b.gif";
			break;
		case 'imgIndustries':
			document.getElementById('imgIndustries').src = "../img/ico4b.gif";
			break;
		case 'imgProfessionals':
			document.getElementById('imgProfessionals').src = "../img/ico5b.gif";
			break;
		default:
			break;
	}
}

function swapImageSolucionsBack(id)
{
	switch (id)
	{
		case 'imgParticulars':
			document.getElementById('imgParticulars').src = "../img/ico1.gif";
			break;
		case 'imgComercos':
			document.getElementById('imgComercos').src = "../img/ico2.gif";
			break;
		case 'imgInstitucions':
			document.getElementById('imgInstitucions').src = "../img/ico3.gif";
			break;
		case 'imgIndustries':
			document.getElementById('imgIndustries').src = "../img/ico4.gif";
			break;
		case 'imgProfessionals':
			document.getElementById('imgProfessionals').src = "../img/ico5.gif";
			break;
		default:
			break;
	}
}

function swapImageSolucions2(id)
{
	switch (id)
	{
		case 'imgParticulars':
			document.getElementById('imgParticulars').src = "img/ico1b.gif";
			break;
		case 'imgComercos':
			document.getElementById('imgComercos').src = "img/ico2b.gif";
			break;
		case 'imgInstitucions':
			document.getElementById('imgInstitucions').src = "img/ico3b.gif";
			break;
		case 'imgIndustries':
			document.getElementById('imgIndustries').src = "img/ico4b.gif";
			break;
		case 'imgProfessionals':
			document.getElementById('imgProfessionals').src = "img/ico5b.gif";
			break;
		default:
			break;
	}
}

function swapImageSolucionsBack2(id)
{
	switch (id)
	{
		case 'imgParticulars':
			document.getElementById('imgParticulars').src = "img/ico1.gif";
			break;
		case 'imgComercos':
			document.getElementById('imgComercos').src = "img/ico2.gif";
			break;
		case 'imgInstitucions':
			document.getElementById('imgInstitucions').src = "img/ico3.gif";
			break;
		case 'imgIndustries':
			document.getElementById('imgIndustries').src = "img/ico4.gif";
			break;
		case 'imgProfessionals':
			document.getElementById('imgProfessionals').src = "img/ico5.gif";
			break;
		default:
			break;
	}
}

function swapImageContacta(id, nivell)
{
	switch(nivell)
	{
		case '0':
			document.getElementById('sobre_contacte').src = "img/banner_up3b.jpg";
			break;
		case '1':
			document.getElementById('sobre_contacte').src = "../img/banner_up3b.jpg";
			break;
		case '2':
			document.getElementById('sobre_contacte').src = "../../img/banner_up3b.jpg";
			break;
		default:
			break;
	}
}

function swapImageContactaBack(id, nivell)
{
	switch(nivell)
	{
		case '0':
			document.getElementById('sobre_contacte').src = "img/banner_up3.jpg";
			break;
		case '1':
			document.getElementById('sobre_contacte').src = "../img/banner_up3.jpg";
			break;
		case '2':
			document.getElementById('sobre_contacte').src = "../../img/banner_up3.jpg";
			break;
		default:
			break;
	}
}