(function($) { 
	$(document).ready(function() { 
		$('#subfiles a').not('#all').click(function() { $('.file').not('.'+$(this).attr('id')).hide().end().filter('.'+$(this).attr('id')).show(); return false; });
		$('#all').click(function() { $('.file').show(); return false; });
	});
})(jQuery);
