jQuery(document).ready(function() { inviteCode(); }); //Show/hide invite code function inviteCode(){ jQuery("#inviteCode").hide(); jQuery("a.enterInviteCode").click( function() { jQuery("#joinNow").hide(); jQuery("#inviteCode").show(); if ( window.JoinNowFocus ) JoinNowFocus(); return false; }); jQuery("a#closeInvite").click( function() { jQuery("#inviteCode").hide(); jQuery("#joinNow").show(); return false; }); } function inviteCodeHasErrors() { jQuery("#inviteCode").show(); jQuery("#joinNow").hide(); if ( window.JoinNowFocus ) JoinNowFocus(); return false; }