$(document).ready(function(){
	$('#navItems .country').click(function(){
		$(".country").css("background", "transparent");
		if( $('.stores', this).css("display") != "block") $(".stores").slideUp();
		$(".stores", this).slideDown();
		$(this).css("background", "#F00");
	});
	
	$('#navItems .country').mouseover(function(){
		if( $('.stores', this).css("display") != "block") $(this).css("background", "#F00"); 
	});
	$('#navItems .country').mouseout(function(){
		if( $('.stores', this).css("display") != "block") $(this).css("background", "transparent"); 
	});
});
