$(document).ready(function() {
  
  // fade in
  $(".fade_box a").hover(function(){
   	$(this).children("strong").stop(true, true);
   	$(this).children("strong").fadeIn(600);
   	})

  // fade out
  $(".fade_box a strong").mouseout(function(){
   	$(this).stop(true, true);
   	$(this).fadeOut(400); 
   	})
   	
});