$().ready(function() {
	/* **************
	* Begin Nav
	* ***************/
	// When a link is clicked
	
    $('.kwicks li').click(function () {
     // switch all kwicks off
     $(".active").removeClass("active");
    
     // switch this kwick on
     var activeId = $(this).attr("id");
     $("#"+activeId).addClass("active");
    }); 
	/* **************
	* End Nav
	* ***************/
});