// JavaScript Document

function changeZone(option)
{
	switch(option)
	{
		case 'home' : document.location.href='../index.php';
			break;
		case 'electricite'  : document.location.href = '../electricite/index.php';
			break;
		case 'electromenager'  : document.location.href = '../electromenager/index.php';
			break;
		case 'cuisines'  : document.location.href = '../cuisines/index.php';
			break;
		default : return 0; break;
	}
}