var aperta=0;
function dettagli_corso(id) {
	var r=Math.random(0,10000000);
	if(aperta==id) {
		$('#dettagli_corso_'+aperta).slideUp('slow');
		aperta=0;
	}else {
		if(aperta)$('#dettagli_corso_'+aperta).slideUp('slow');
		$('#dettagli_corso_'+id).load('jq/scheda_corso.php?r='+r,{id:id},function() {
			$('#dettagli_corso_'+id).slideDown('slow');
			aperta=id;
		});
	}
}
