function allumeLignePrix(codeInterneHash){
	$("[id^='ligne_']").removeClass('ligneProduitActive');
	$("#ligne_" + codeInterneHash).addClass('ligneProduitActive');
	return false;
}

function eteindLignePrix(codeInterneHash,force){
	$("#ligne_" + codeInterneHash).removeClass('ligneProduitActive');
	return false;
}

function chargeGdeImage(rel){
	$.fancybox.showActivity();
	$.get("/produits/modeles/gdeImage.tpl.php",{GLHASH: rel},function(data){
		$('#imgGrandeContainer').html(data);
	});
	allumeLignePrix(rel);
	$.fancybox.hideActivity();
}