jQuery(document).ready(function()
{
if(getCookie("swpm_session")==null && getCookie("wp_member_aec")==null)
{
jQuery("#content").replaceWith("
You must login to access this content.");
} else {
if(getCookie("wp_member_aec")=='=0')
{
// If they are not an active paying member, ask them to join or renew membership.
jQuery("#content").replaceWith('To view this page you must be a current member.
If you are not a member, please join now.
If your membership has expired, please renew now.
');
}
}
});