jQuery.noConflict();
(function($) {
	$(function() {
		// spoiler
		$(document).on('click', '.tag-option', function(e) {
			e.preventDefault();
			
			var $this = $(this),
				$parent = $this.parents('.tag-hide');
				
			$('.tag-content', $parent).toggle();
		});
	});
})(jQuery);

