/* Script to provide the navigation menu with functionality */

$(document).ready(function(){ $("#menu").treeview({ collapsed: true, unique: true, persist: "location" });

 $('.table_s tr').hover(function() { $(this).addClass('pretty-hover');}, function() {$(this).removeClass('pretty-hover');});

 $(".table_s tr:nth-child(odd)").addClass("odd");

 $(".table_new tr:nth-child(odd)").addClass("n_odd");

});