$(document).ready(function(){
	/* This code is executed after the DOM has been completely loaded */

	$('#descargardisco a').click(function(){
		
		var countSpan = $('.download-count','ul.manager');
		countSpan.text( parseInt(countSpan.text())+1+' ' );
	});
});
