	function carica(page, div, id){
		$.post(page, { cat: id, path: page },
			function(data){
				$("#"+div).html(data);
			}
		);
	}
