
window.addEvent('domready', function() 
{

	$$('.btn_loader').addEvent('click',function(b){
		
		inner = this.getElement('.text');
		inner.addClass('is_loading');
		inner.innerHTML = this.title;
		
		
			
		
	})
	
	
});