$(document).ready(function(){
	$(".more-brands").fadeTo(0, 0.3);
	$(".more-brands").mouseenter(function(){
       $(this).fadeTo(0, 1);
	});
   $(".more-brands").mouseleave(function(){
       $(this).fadeTo(0, 0.3);
   });
});
