$(document).ready(function() {   $("div#nav li").click(        function() {	        $("div#nav li.current").removeClass("current");	        $(this).addClass("current");    });        // FAQs        $(".question").click(        function()        {            if ($(this).hasClass("closed")) {                $(this).removeClass("closed").addClass("open");                $(this).next(".answer").removeClass("js_hide").show(250);                return false;            }            else {                $(this).removeClass("open").addClass("closed");                $(this).next(".answer").hide(250);                return false;            }        }    );    $("a.less").click(        function() {            $(this).parent().parent(".answer").hide(250);            $(this).parent().parent().prev(".question").removeClass("open").addClass("closed");            return false;        }    );        // show/hide calendar years    $('a.show_table').click(function() {        $(this).parent('h1').next('table').toggle('fast', function() {        // Animation complete.        });        return false;    });    });
