$(function() {
	$('#top .menu li').mouseenter(function(){
		$(this).find('ul').show();
	});
	$('#top .menu li').mouseleave(function(){
		$(this).find('ul').hide();
	});

  /* sliding doors */
  $('button, a.button').wrapInner('<span></span>');

  /* clear buttons */
  $('button.clear').click(function(){
    $(this).parents('form').find('input, textarea').val('');
    return false;
  })

  /* submit buttons */
  $('button.submit').click(function(){
    $(this).parents('form').submit();
  })

  /* submit anchors */
  $('a.submit').click(function(){
    $(this).parents('form').attr('action',$(this).attr('href')).submit();;
    return false;
  })
})
