$(document).ready(function() {
$("div.pages.welcome").fadeIn("slow");
$("a.list-group-item").on("click", function() {
if (!$(this).hasClass("active")) {
$("a.active").removeClass("active");
$(this).addClass("active");
$("div.pages").hide();
if ($(this).hasClass("home")) {
$("div.pages.home").fadeIn("slow");
}
if ($(this).hasClass("welcome")) {
$("div.pages.welcome").fadeIn("slow");
}
if ($(this).hasClass("tree1window1")) {
$("div.pages.tree1window1").fadeIn("slow");
}
if ($(this).hasClass("tree1window2")) {
$("div.pages.tree1window2").fadeIn("slow");
}
if ($(this).hasClass("reports")) {
$("div.pages.reports").fadeIn("slow");
}
if ($(this).hasClass("settings")) {