
<!--

function LookImg(NumImg, Mode)
{
  var Obj, ObjTxt, LabelItem;
	
	switch(NumImg)
	{
		case 1 :
		  ObjTxt = document.mtxt_home;
		  Obj    = document.m_home;
			LabelItem = 'home';
			break;
		case 2 :
		  ObjTxt = document.mtxt_club;
		  Obj    = document.m_club;
			LabelItem = 'club';
			break;
		case 3 :
		  ObjTxt = document.mtxt_form;
		  Obj    = document.m_form;
			LabelItem = 'form';
			break;
		case 4 :
		  ObjTxt = document.mtxt_photos;
		  Obj    = document.m_photos;
			LabelItem = 'photos';
			break;
		case 5 :
		  ObjTxt = document.mtxt_bio;
		  Obj    = document.m_bio;
			LabelItem = 'bio';
			break;
		case 6 :
		  ObjTxt = document.mtxt_jour;
		  Obj    = document.m_jour;
			LabelItem = 'jour';
			break;
	}
	if (Mode == 1)
	{
//	  Obj.src    = "/images/btn_" + LabelItem + "_sel.gif";
	  ObjTxt.src = "/images/btn_" + LabelItem + "_txt_sel.gif";
	}
	else
	{
//	  Obj.src    = "/images/btn_" + LabelItem + ".gif";
	  ObjTxt.src = "/images/btn_" + LabelItem + "_txt.gif";
	}
}

//-->

