$(document).ready(function(){
	$('.toggle-download-section').click(function(){
		
		$download_id = this.id;
		
		$('#cat_'+$download_id).slideToggle();
		
	});
});