$(document).ready(function(){
         $('.btn_more_el a,.btn_more_en a').hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 500);
		 }, function(){$(this).stop().animate({'opacity' : '1'}, 500);});
});
