$(document).ready(function()
{ 
	//Cacher tous les tarifs par défaut
	//$("#tableTarifComplete").hide();
	
});

function showAllPrice()
{
	//On l'affiche
	//$("#tableTarifComplete").show();
}

function closeAllPrice()
{
	//On le cache
	//$("#tableTarifComplete").hide();
} 