$(document).ready(function() {
	/* ---------------------------------------
	Add Print Page Link if Javascript is enabled
	--------------------------------------- */
    $("#picker").ready(function() {
		$("#picker-tags-list").hide();
		$("#picker-popular-list").hide();

	    $(".picker-comments a").click(function() {
			$("#picker-comments-list").show();
			$(".picker-comments a").addClass("active");
			$("#picker-tags-list").hide();
			$(".picker-tags a").removeClass("active");
			$("#picker-popular-list").hide();
			$(".picker-popular a").removeClass("active");
			return false;
	     });
	    $(".picker-tags a").click(function() {
			$("#picker-comments-list").hide();
			$(".picker-comments a").removeClass("active");
			$("#picker-tags-list").show();
			$(".picker-tags a").addClass("active");
			$("#picker-popular-list").hide();
			$(".picker-popular a").removeClass("active");
			return false;
	     });
	    $(".picker-popular a").click(function() {
			$("#picker-comments-list").hide();
			$(".picker-comments a").removeClass("active");
			$("#picker-tags-list").hide();
			$(".picker-tags a").removeClass("active");
			$("#picker-popular-list").show();
			$(".picker-popular a").addClass("active");
			return false;
	     });
	  
     });

	/*
    $("#tutorial-archives").ready(function() {
		$("#tutorial-archives p").hide();
		 $("#tutorial-archives h3 a").click(function () {
				var tutorial = $(this).parent().parent();
				alert(tutorial p.value());
				return false;
			});
     });
	*/

		
});
