	function showMenu(obj) {
		obj.addClass("show");
		if (obj.text().length == 260)
		{
			jQuery('#kitFormFrame').contents().find('#credits_conso').addClass("hide");
			jQuery('#kitFormFrame').contents().find('#credits_immo').addClass("hide");
		}
	}

	function hideMenu(obj) {
		obj.removeClass("show");
		if (obj.text().length == 260)
		{
			jQuery('#kitFormFrame').contents().find('#credits_conso').removeClass("hide");
			jQuery('#kitFormFrame').contents().find('#credits_immo').removeClass("hide");
		}
	}
