<!--

function mouseOverPlan(imageIndex)
{
	switch (imageIndex)
	{
		case 1: 
		{
			if (eltselectPlan != imageIndex)
				document.puce1.src="./images/plans/puce1B.gif";
			break;
		}
		case 2: 
		{
			if (eltselectPlan != imageIndex)
				document.puce2.src="./images/plans/puce2B.gif";
			break;
		}
		case 3: 
		{
			if (eltselectPlan != imageIndex)
				document.puce3.src="./images/plans/puce3B.gif";
			break;
		}
		case 4: 
		{
			if (eltselectPlan != imageIndex)
				document.puce4.src="./images/plans/puce1B.gif";
			break;
		}
		case 5: 
		{
			if (eltselectPlan != imageIndex)
				document.puce5.src="./images/plans/puce2B.gif";
			break;
		}
		case 6: 
		{
			if (eltselectPlan != imageIndex)
				document.puce6.src="./images/plans/puce3B.gif";
			break;
		}
	}
}

function mouseOutPlan(imageIndex)
{
	switch (imageIndex)
	{
		case 1: 
		{
			if (eltselectPlan != imageIndex)
				document.puce1.src="./images/plans/puce1A.gif";
			break;
		}
		case 2: 
		{
			if (eltselectPlan != imageIndex)
				document.puce2.src="./images/plans/puce2A.gif";
			break;
		}
		case 3: 
		{
			if (eltselectPlan != imageIndex)
				document.puce3.src="./images/plans/puce3A.gif";
			break;
		}
		case 4: 
		{
			if (eltselectPlan != imageIndex)
				document.puce4.src="./images/plans/puce1A.gif";
			break;
		}
		case 5: 
		{
			if (eltselectPlan != imageIndex)
				document.puce5.src="./images/plans/puce2A.gif";
			break;
		}
		case 6: 
		{
			if (eltselectPlan != imageIndex)
				document.puce6.src="./images/plans/puce3A.gif";
			break;
		}
	}
}

function selectItemPlan(imageIndex)
{
	switch (imageIndex)
	{
		case 1: 
		{
			if (eltselectPlan != imageIndex)
			{
				document.puce1.src="./images/plans/puce1B.gif";
				document.puce2.src="./images/plans/puce2A.gif"; 
				document.puce3.src="./images/plans/puce3A.gif";	
			}
			break;
		}
		case 2: 
		{
			if (eltselectPlan != imageIndex)
			{
				document.puce1.src="./images/plans/puce1A.gif";
				document.puce2.src="./images/plans/puce2B.gif"; 
				document.puce3.src="./images/plans/puce3A.gif";	
			}
			break;
		}
		case 3: 
		{
			if (eltselectPlan != imageIndex)
			{
				document.puce1.src="./images/plans/puce1A.gif";
				document.puce2.src="./images/plans/puce2A.gif"; 
				document.puce3.src="./images/plans/puce3B.gif";
			}
			break;
		}
		case 4: 
		{
			if (eltselectPlan != imageIndex)
			{
				document.puce4.src="./images/plans/puce1B.gif";
				document.puce5.src="./images/plans/puce2A.gif"; 
				document.puce6.src="./images/plans/puce3A.gif";	
			}
			break;
		}
		case 5: 
		{
			if (eltselectPlan != imageIndex)
			{
				document.puce4.src="./images/plans/puce1A.gif";
				document.puce5.src="./images/plans/puce2B.gif"; 
				document.puce6.src="./images/plans/puce3A.gif";	
			}
			break;
		}
		case 6: 
		{
			if (eltselectPlan != imageIndex)
			{
				document.puce4.src="./images/plans/puce1A.gif";
				document.puce5.src="./images/plans/puce2A.gif"; 
				document.puce6.src="./images/plans/puce3B.gif";
			}
			break;
		}
	}
	eltselectPlan = imageIndex;
}
//-->