$(document).ready(function() {

	$('ul[class|=nav] > li').hover(
		function() { 
			$(this).children('a:first').css('background-position','0 -26px');
			$(this).children('ul:first').css('display','block');		
		},
		
		function() { 
			$(this).children('a:first').css('background-position','0 0');
			$(this).children('ul:first').css('display','none');
		}
	);
	
	$('div.selected-country').click(function() {
		
			if ($('#header #country ul').css('display') == "none") {
		
				$('#header #country ul').css('display','block');
				
			} else {
			
				$('#header #country ul').css('display','none');
			
			}
				
	});
	
	$('ul.countries li').click(function() {
		
		$('#header #country ul').css('display','none');
					
	});
		
});
