function rollover_hfe (img_id , path)
{
	//alert(img_id + path);
	//alert(document.getElementById('HFE').style.backgroundImage);
	if (img_id == 'HFE_H')
	{
		document.getElementById(img_id).src = path + 'hfe/homme_txt_b.jpg';
		document.getElementById('HFE').style.backgroundImage = 'url(' + path + 'hfe/homme.jpg)';
	}
	if (img_id == 'HFE_F')
	{
		document.getElementById(img_id).src = path + 'hfe/femme_txt_b.jpg';
		document.getElementById('HFE').style.backgroundImage = 'url(' + path + 'hfe/femme.jpg)';
	}
	if (img_id == 'HFE_E')
	{
		document.getElementById(img_id).src = path + 'hfe/enfant_txt_b.jpg';
		document.getElementById('HFE').style.backgroundImage = 'url(' + path + 'hfe/enfant.jpg)';
	}
}
function rollover_hfe_out (img_id , path, img_out)
{
	//alert(img_id + path);
	if (img_id == 'HFE_H')
	{
		document.getElementById(img_id).src = path + 'hfe/homme_txt_w.jpg';
		document.getElementById('HFE').style.backgroundImage = 'url(' + path + 'hfe/' + img_out + '.jpg)';
	}
	if (img_id == 'HFE_F')
	{
		document.getElementById(img_id).src = path + 'hfe/femme_txt_w.jpg';
		document.getElementById('HFE').style.backgroundImage = 'url(' + path + 'hfe/' + img_out + '.jpg)';
	}
	if (img_id == 'HFE_E')
	{
		document.getElementById(img_id).src = path + 'hfe/enfant_txt_w.jpg';
		document.getElementById('HFE').style.backgroundImage = 'url(' + path + 'hfe/' + img_out + '.jpg)';
	}
}