$(window).bind('load',function(){var trabajando=false;var terminado=false;var errorc=false;function cargar_contenido(){$('#datos').load('/api/verso_remoto.php','',pre_cambio)}function cambiar_contenido(responseText,textStatus,XMLHttpRequest){if(textStatus!=="success"&&textStatus!=="notmodified"){$('#estado').fadeTo("normal",0,function(){$('#estado').html("Hubo un error cargando los versos, por favor intente más tarde.");$('#estado').fadeTo("normal",1,function(){errorc=true;trabajando=false})})}else{$('#estado').fadeOut('slow',function(){$('#datos').fadeIn('slow',function(){$('#estado').height($('#datos').height());errorc=false;trabajando=false})})}}function pre_cambio(responseText,textStatus,XMLHttpRequest){if(errorc){$('#estado').fadeTo("normal",0,function(){$('#estado').html('<img src="imagenes/cargando.gif" alt="Cargando...">');$('#estado').fadeTo("normal",1,function(){cambiar_contenido(responseText,textStatus,XMLHttpRequest)})})}else{cambiar_contenido(responseText,textStatus,XMLHttpRequest)}}$('#triangulo').crossfade({type:'mouseenter',delay:400},{type:'mouseleave'});$('#controlador').click(function(){if(!trabajando){trabajando=true;if(!errorc){$('#estado').height($('#datos').height());$('#estado').css("line-height",$('#datos').height()+'px');$('#datos').fadeOut('normal',function(){$('#estado').fadeIn('normal');cargar_contenido()})}else{cargar_contenido()}}})});

