$(document).ready(function() {

	//fix empty box on join club page
	var el = $("#v65-signUpClubSummaryWrapper");
	if (el) {
		var content = $(el).html();
		if (!$.trim(content)) {
			$(el).hide();
		}
	}
});
