$('#countyChooserButton').click(function() {
	$('#country_chooser_options').css({display: 'block'});

});

$('#footer_box1').mouseleave(function() {
	$('#country_chooser_options').css({display: 'none'});

});

$('#country_chooser_options').children().click(function() {

	$('#country_chooser_select').text($(this).html());
	$('#country').val($(this).attr("id"));
	$('#country_chooser_options').css({display: 'none'});

});

function showCategory(id, btn) {
	$('#' + id.replace(" ", "_") + '_all').show();
	btn.style.display = 'none';
}
