// JavaScript Document
$(document).ready(function(){		 
		$('.linkautor').bind('click',function(event){
			var autor=$(this).attr("id");
			var pid=autor.substring(autor.lastIndexOf("_") + 1);
			if($(this).hasClass("opened")){
				$(this).removeClass("opened");
				$('#lista_'+pid).empty();
			}else{				
				$(this).addClass("opened");
				$.ajax({type:"POST",url:"http://www.maspoderlocal.es/barticulo.php",data:({id:pid}),dataType:"html",async:false,
					beforeSend:function(html){
						$('#lista_'+pid).empty().append("<p class='loading'>Leyendo...</p>");
					},
					success:function(html){
						$('#lista_'+pid).empty();
						$('#lista_'+pid).append(html);
					}
				});
			}
				event.preventDefault();
		});
		
});

