// JavaScript Document
$(document).ready(function(){

	$(".flag a").hover(function() {
	  $(this).next("span").animate({opacity: "show", top: "5"}, "medium" );
	}, function() {
	  $(this).next("span").animate({opacity: "hide", top: "5"}, "fast" );
	});
	
});

