$(document).ready(function(){
	
	$(".img-bt-txt").hover(function(){
   		$(this).fadeOut(50);$(this).fadeIn(100);
   		$(this).addClass("img-bt-txt-on");
	},function(){
		$(this).removeClass("img-bt-txt-on");	
	});
	
	$(".img-bt").hover(function(){
   		$(this).fadeOut(50);$(this).fadeIn(100);
		$(this).attr({ 
			src: $(this).attr("src").replace("rBT","aBT")
		});
	},function(){
		$(this).attr({ 
			src: $(this).attr("src").replace("aBT","rBT")
		});
	});
	
});