$(document).ready(function()
		{
			loadMainMenu();
			$("#user_country").change(function()
					{

						var country_code = $("#user_country option:selected").attr('value');
						if (country_code != -1)
						{
							$('#country_change_link').attr('param', country_code);
						}
						
					});
			
			$('#country_change_link').click(function()
					{
						var country_code = $(this).attr('param');
						$.post('/index.php/main/change_user_country/id/' + country_code, function(code)
								{
									//$('#user_country_flag_icon').attr('src', '/web/images/flags/' + code + '.gif');
								});
						setTimeout("reload();", 2000);
					});
		});

		function loadMainMenu()
		{
			$('#nav').empty();
			$('#nav').load('/index.php/main/change_menu');
		}
		
		function reload()
		{
			window.location = 'http://pollshare.myisay.com/index.php/main/index';
		}
		
