$(document).ready(
  function(){
	
	$(".bandeiras").mouseover(
      function(){
		
		var id = $(this).attr('id');
		
		$(".nomes-bandeiras").each(
		  function(){
		    $(this).hide();  
		  }					 
		);
		
		$("#bandeira-" + id).fadeIn();
		
	  }
    ).mouseout(
	  function(){
		
		var id = $(this).attr('id');
		
		$("#bandeira-" + id).hide();
		
	  }
	);
	
  }
);
