$(document).ready(function(){		
		
	$("div.marmfs_cat h2").click(function () {
		$(this).nextAll('div.marmfs_year').toggle('fast');
		$(this).nextAll('div.marmfs_newupload').toggle('fast');
    });
	
	$("span.marmfs_down").click(function () {
		$(this).next('div.marmfs_downloads').toggle('fast');
    });
	
	$("span.marmfs_up").click(function () {
		$(this).nextAll('div.marmfs_uploads').toggle('fast');
    });

	
	$("div.marmfs_cat h3").click(function () {
		$(this).nextAll('div').toggle('fast');
    });
	
	
});
