$j(document).ready(function(){
   var need_cookie = $j.cookie('digitallogo_user');

   if (need_cookie == null){
        $j('#top3').children('li:last').hide().end().children('li:first').show();
        $j('#c_logged_in_box').hide();
        $j('#c_register_your_company').show();
	    $j('#c_login_box').show();	
   } 
   if (need_cookie != null) {
      $j('#top3').children('li:first').hide().end().children('li:last').show();
      $j('#c_logged_in_box').show();
      $j('#c_register_your_company').hide();
	  $j('#c_login_box').hide();
   }

});