$jq( document ).ready( function( $ ) {
	var currentLocation = geoplugin_countryCode().toLowerCase();

	var locs = $( ".geo" );
	locs.children().hide();

	locs.each( function() {
		var self = $( this );
		
		var match = self.children( "." + currentLocation );
		if ( match.size() > 0 )
			match.show();
		else
			self.children( ".default" ).show();
	} );
} );
