// JavaScript Document
$(function() {
	$("#popularposts .widget-links ul li a").bind("click", function() {
		var id = $(this).attr("id");
		if (!$(this).hasClass("current")) {
			
			if (id == "link-views") {
				$("#link-comments").removeClass("current");
			} else {
				$("#link-views").removeClass("current");
			}
			
			$(this).addClass("current");
			
			$(".widget-posts").hide();
			if (id == "link-views") {
				$("#most-viewed").show();
			} else {
				$("#most-commented").show();
			}
		}
	});
});
