$(document).ready(function(){	$('#lang_trigger').click(function(){		if($('.c-country_select').css('display') == 'none'){			$('.c-country_select').css('display', 'block');			$('.c-country_select').css('height', 0);			$('.c-country_select').animate({height:95}, 200, function(){			});		} else {			$('.c-country_select').animate({height:0}, 200, function(){				$('.c-country_select').css('display', 'none');			});		}	});	$('#news_archive div').hide()	if(window.archive_year) {		$('#news_archive_year_' + window.archive_year).show()	}	$('a[rel="news_archive_year"]').click(function() {		$('#news_archive div').hide()		$(this).siblings('div').show()		return(false)	})});function change_tab(id){	$('.i-content').css('display', 'none');	$('.i-tab').removeClass('active');	$('#content'+id).css('display', 'block');	$('#tab'+id).addClass('active');}function change_url(){	window.location = $('#country_list').val();}
