$(document).ready(function() {
	$(".clkReg").click(function () { 
		//Svuoto e pulisco i li
		$("#labelreg").find("a").each(function(i){
			$(this).removeClass("current");	
		});		
		$(this).addClass("current");
		var id = $(this).attr("id");		
		//Svuoto e pulisco La visualizzazione 
		$(".box-reg").each(function(i){
			
			if($(this).attr("lb") == id)
				$(this).show();
			else
				$(this).hide();									
		});
		return(false);
	});
});
