function showWidget(id){
	var idSet = id.split("-");
	var hadClass = $("#" + id).hasClass("open");
	$(".sidebar-body").hide("fast");
	$(".widget-link").removeClass("open");
	
	if(!hadClass){
		$("#" + id).addClass("open");
		$("#sidebar-" + idSet[0] + "-body").show("fast");
	}
}
