$(function() {
		$('.mini').click(function(){
                    prUrl=$(this).attr('prUrl');
                    prFila=$(this).attr('prFila');
                    $('.mini').removeClass("selected");
                    $(this).addClass("selected");
                    $('.detall_post').hide("slow");

                           $('#detall_post_'+prFila).load(prUrl,{'method':'ajax'},function(){
                                $(this).show("slow",function(){
                                    document.getElementById('detall_post_'+prFila).scrollIntoView();
                                });
                           });
		});
})
