function clearimages()		{

	document.num1.src = "/images/home/1_off.gif";
	document.num2.src = "/images/home/2_off.gif";
	document.num3.src = "/images/home/3_off.gif";
	document.num4.src = "/images/home/4_off.gif";
	document.num5.src = "/images/home/5_off.gif";
}

function clickMe(imgNum) 	{  
	clearimages()
	switch (imgNum) {
	
	case '1':
	document.num1.src = "/images/home/1_on.gif";
	document.text1.src = "/images/home/text_1.gif";
	break;
	
	case '2':
	document.num2.src = "/images/home/2_on.gif";
	document.text1.src = "/images/home/text_2.gif";
	break;
	
	case '3':
	document.num3.src = "/images/home/3_on.gif";
	document.text1.src = "/images/home/text_3.gif";
	break;
	
	case '4':
	document.num4.src = "/images/home/4_on.gif";
	document.text1.src = "/images/home/text_4.gif";
	break;
	
	case '5':
	document.num5.src = "/images/home/5_on.gif";
	document.text1.src = "/images/home/text_5.gif";
	break;
	
	case '6':
	document.num1.src = "/images/home/1_on.gif";
	document.text1.src = "/images/home/text_1_fr.gif";
	break;
	
	case '7':
	document.num2.src = "/images/home/2_on.gif";
	document.text1.src = "/images/home/text_2_fr.gif";
	break;
	
	case '8':
	document.num3.src = "/images/home/3_on.gif";
	document.text1.src = "/images/home/text_3_fr.gif";
	break;
	
	case '9':
	document.num4.src = "/images/home/4_on.gif";
	document.text1.src = "/images/home/text_4_fr.gif";
	break;
	
	case '10':
	document.num5.src = "/images/home/5_on.gif";
	document.text1.src = "/images/home/text_5_fr.gif";
	break;
	
	}
}