$(document).ready(function() {
	
	$('.downloadContainer').hide();
	
	$('.downloadHandler').click( function() {

		if ($(this).hasClass('open')) {
			$('#' + $(this).attr('rel')).hide();
			$(this).removeClass('open');
		} else {
			$('#' + $(this).attr('rel')).show();
			$(this).addClass('open');
		}
		
	});
	
});
