$(function() {

});

function reload() {
	document.location = 'world-news.php';
}

function changeCountry(country) {
	createCookie('news_country', country);

	resetResults();

	reload();
}

function sortResults(column, direction) {
	createCookie('news_sort', column);
	createCookie('news_sort_direction', direction);

	resetResults();
	
	reload();
}

function resetResults() {
	createCookie('result_start', '0');
}