/* Author: johann BICH */

$(document).ready(function(){
	$("#1").addClass('active');
	$("#text1").removeClass('hidden');
	$(".but").click(function(){
		if (!$(this).hasClass('active')){
			theid = $(this).attr("id");
			$("#text"+theid).removeClass('hidden');
			$(".but").each(function(){
				if ($(this).hasClass('active')){
					$(this).removeClass('active');
					$("#text"+$(this).attr("id")).addClass('hidden');
				}
			});
			$(this).addClass('active');
		}
	});
});
