$(document).ready(function(){
	dropdownmenu();

	$('.country_list li i').click(function(){
		$(this).hide();
		$(this).parent().find("ul").show();
		$(this).parent().find("em").show();
	});
	$('.country_list li em').click(function(){
		$(this).hide();
		$(this).parent().find("ul").hide();
		$(this).parent().find("i").show();
	});

});

function dropdownmenu(){
	$("#dropdown li").hover(function(){
		$(this).find('ul:first').css({visibility:"visible", display:"none"}).show();
	}, function(){
		$(this).find('ul:first').css({visibility:"hidden"});
	});
}


function getCookie(c_name) {
	var i,x,y,ARRcookies=document.cookie.split(";");
	for (i=0; i<ARRcookies.length;i++) {
		x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
		y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
		x=x.replace(/^\s+|\s+$/g,"");
		if (x==c_name) {
			return unescape(y);
		}
	}
}
