Jason,
For some reason, it's not posting to the page. I've got the links attached to a navigation css, so they're getting styled. That shouldn't effect the php, right?
Here's what I've got, along with your above code inserted:
<div id="navcontainer">
    <ul id="navlist">
        <li><a href="index.php">Home</a></li>
        <li><?php if(WA_Auth_RulePasses("Logged in to users")){ // Begin Show Region ?>
				<a href="users_LogOut.php">Log Out</a>
					<?php } // End Show Region ?>
			<?php if(!WA_Auth_RulePasses("Logged in to users")){ // Begin Show Region ?>
				<a href="users_LogIn.php">Log In</a>
					<?php } // End Show Region ?></li>
    </ul>
</div>

 














