jQuery(document).ready(function($) {
	
	$('body').addClass('hasjs');
	
	function countries() {
		var nav = $('nav#selector'),
			link = nav.find('a');
			
			$('a.country').hide(0);
			
			link.hover(function() {
				
				var country = $(this).attr('data-country-code');
				
				$('a.country').each(function(index) {
					if ($(this).attr('data-country') == country) {
						$(this).fadeIn('fast');
					};
				});
				
			}, function() {
				var country = $(this).attr('data-country-code');

				$('a.country').each(function(index) {
					if ($(this).attr('data-country') == country) {
						$(this).stop(true,true).fadeOut('fast');
					};
				});

				
			});
					
	};
	countries();
	
});
