jQuery(function($) {
	$(document).ready(function () {
		$('.more').click(function() {
			var id = $(this).attr("rel");
			$('.'+ id).toggle();
			$(this).hide();			
		});
	});
});

