(function($){
	$(document).ready(function() {
		$('.btn_history').click(function() {
			$(this).next().show();
			return false;
		});

		$('.close').click(function() {
			$(this).parent().hide();
			return false;
		});
	});
})(jQuery);
