$(document).ready(function() {
	$(".hiding").click(function() {
		$("#hide-" + $(this).attr("id")).each(function() {
			if ($(this).is(":visible")) {
				$(this).fadeOut('slow');
			} else {
				$(this).fadeIn('slow');
			}
		});
		$("#" + $(this).attr("for")).each(function() {
			if ($(this).is(":visible")) {
				$(this).fadeOut('slow');
			} else {
				$(this).fadeIn('slow');
			}
		});
	});
});
