$(document).ready(function(){
$(".navigation").treeview({
 animated: "fast",
 collapsed: true,
 unique: true,
 persist: "cookie",
toggle: function() {
 window.console && console.log("%o was toggled", this);
 }
 });
});



$(document).ready(function() {
$("#verformedico").click(function() {
  $("#tabregutente").addClass("hidden");
  $("#tabregmedico").removeClass("hidden");
});

$("#verformutente").click(function() {
  $("#tabregmedico").addClass("hidden");
  $("#tabregutente").removeClass("hidden");
});

});

