function welcomeSelectCountry()
{
	if (document.getElementById('select_country_off').style.display == 'none')
	{
		document.getElementById('select_country_off').style.display = 'block';
		document.getElementById('select_country_off').style.visibility = 'visible';
		
		document.getElementById('select_country_on').style.display = 'none';
		document.getElementById('select_country_on').style.visibility = 'hidden';	

		document.getElementById('country_list').style.display = 'none';
		document.getElementById('country_list').style.visibility = 'hidden';
	}
	else
	{	
		document.getElementById('country_list').style.display = 'block';
		document.getElementById('country_list').style.visibility = 'visible';

		document.getElementById('select_country_on').style.display = 'block';
		document.getElementById('select_country_on').style.visibility = 'visible';
		
		document.getElementById('select_country_off').style.display = 'none';
		document.getElementById('select_country_off').style.visibility = 'hidden';	
	}
}
