jQuery(document).ready(function(){
	$('.ss-case').hide();
	$('#accordeon').children(':first-child').children().show();
	$("#accordeon a").click(function() {
		$('.ss-case').hide();
		$(this).parent().next().show();	
		return false;
	});
});
