// Once the DOM has loaded, replace the holder div for the top menu bar with
// the ones we want to sever dependent on the user being logged in or not.
document.observe("dom:loaded",function(){
  $('user-options').replace('<div id=\"dynamic-header\">\n    <p><span>\n    <a href=\"/members/login\" class=\"link-btn cl-neutral\">LOGIN<\/a> OR\n      <a href=\"/members/new\" class=\"link-btn cl-positive\">SIGN UP<\/a> TO JOIN OUR COMMUNITY!<\/span><\/p>  \n<\/div>\n\n');
});


