jQuery(document).ready(function(){
	jQuery('#countryArrow').bind('click', activateCountryDialog)
	jQuery('#countrySelect').bind('mouseover', activateCountryDialog);
	jQuery('#countrySelect').bind('mouseout', disableCountryDialog);
	function activateCountryDialog(){
		//$(this).addClass('hover');
		jQuery('#topCountryList').show();
	}
	function disableCountryDialog(){
		//$(this).removeClass('hover');'
		jQuery('#topCountryList').hide();
	}
});
