// JavaScript Document
$(document).ready(function() {
	$("#tag").click(function () {
    	$("#taglist").slideToggle("slow");
	});
});
