
/* - pioneer_showhide.js - */
// http://www.pioneerwine.com/portal_javascripts/pioneer_showhide.js?original=1
function show_table(e){jq(this).text('(click to hide)');jq(this).parent().parent().find("table").removeClass("hidden")};
function hide_table(e){jq(this).text('(click to show)');jq(this).parent().parent().find("table").addClass("hidden")};jq(function(){jq(".country h5").toggle(show_table,hide_table)});

