(function($) {
$(function() {
 
  var author = $('#author').val();
  if( author !='' && $('#email').val() !='' ) {
    $('#authorData').hide();
    $('#authorData').before('<div id="welcome">欢迎您回访, <strong>' + author + '</strong>! <a href="#">编辑 &raquo;</a></div>')
    $('#welcome a').toggle(
      function() {
        $('#authorData').show(300);
        $(this).html('缩回 &raquo;');
        return false;
      },
      function() {
        $('#authorData').hide(300);
        $(this).html('编辑 &raquo;');
        return false;
      }
    );
  }
 
});
})(jQuery)
