﻿$(document).ready(function() {
    $("#container .menu > li").click(function(e) {
        switch (e.target.id) {
            case "news":
                //change status & style menu
                $("#news").addClass("active");
                $("#tutorials").removeClass("active");
                $("#links").removeClass("active");
                //display selected division, hide others
                $("div.news").fadeIn();
                $("div.tutorials").css("display", "none");
                $("div.links").css("display", "none");
                break;
            case "tutorials":
                //change status & style menu
                $("#news").removeClass("active");
                $("#tutorials").addClass("active");
                $("#links").removeClass("active");
                //display selected division, hide others
                $("div.tutorials").fadeIn();
                $("div.news").css("display", "none");
                $("div.links").css("display", "none");
                break;
            case "links":
                //change status & style menu
                $("#news").removeClass("active");
                $("#tutorials").removeClass("active");
                $("#links").addClass("active");
                //display selected division, hide others
                $("div.links").fadeIn();
                $("div.news").css("display", "none");
                $("div.tutorials").css("display", "none");
                break;
        }
        //alert(e.target.id);
        return false;
    });
});