$(document).ready(function(){
	$("#flags a").hover(
		function(){
			$("#mottos div").hide();			
			$("#mottos ."+$(this).attr("class")).show();
		},
		function(){
		}
  	);
});