$(document).ready( function() {
	var country = getCountry();
	showAmazon(country);
});

function getCountry() {
	var country = geoip_country_code();
	return country;
}

function showAmazon(country) {
	if(country == 'CA') {
		$('.amazonUS').hide();
		$('.amazonCA').show();
	} else {
		$('.amazonCA').hide();
		$('.amazonUS').show();
	}
}
