/*$(window).load(function(){
$.fn.LoadingMessage = function (a){
		   var attr, loading;
		$(this).click(function(){
		   if(a.attr=='text'){ if($(this).attr('title')!=''){ attr=$(this).attr('title'); } else { attr=$(this).text();}}
		   else if (a.attr=='url'){attr=$(this).attr('href');}
		   loading = '<div id="'+a.css+'">Cargando ...<br/><span class="pequeno">IMPORTANTE: ESTE PROCESO PUEDE DURAR HASTA 60 SEGUNDOS. POR FAVOR, NO PULSES NINGUNA TECLA HASTA QUE OBTENGAS RESULTADOS.</span><\/div>'; 
			$('body').prepend(loading);			
		    });
       return false; 
    };
  $('a').LoadingMessage({
         text:'Cargando',
		 attr:'text',
		 css:'loading'
    });
  $('.button').LoadingMessage({
         text:'Cargando',
		 attr:'text',
		 css:'loading'
    });
});
*/