if ($) $ (function () {

  e2UpdateSubmittability = function () {
	  $ ('#submit-button').attr ('disabled', (
	    /^ *$/.test ($ ('#name').val ()) ||
	    /^ *$/.test ($ ('#email').val ()) ||
	    /^ *$/.test ($ ('#text').val ())
	  )? 'disabled' : '')
  }
  
  e2UpdateSubmittability ()
 
  $ ('.required').bind ('input blur cut copy paste keypress', e2UpdateSubmittability)
  
  if ($ ('#form-comment-place')) { 
    $ ('#your-comment').show ()
    $form = $ ('#form-comment')
    $ ('#form-comment-place div').append ($form)
    $ ('#your-comment').addClass ('dashed').click (function () {
      $ ('#your-comment').toggleClass ('popped')
      $ ('#form-comment-place').toggle ()
      return false
    })
  }
  
})