Used this hack on the top left of my page and it does what I want…
<?php
global $user_identity;
get_currentuserinfo();
if ($user_identity == ”) {
echo(‘Welcome Guest, why not register or login to post comments’);
} else {
echo(‘Welcome <b>’ . $user_identity . ‘</b>’);
}
?>