(function($) {

  $(document).ready(function() {

    $.extend($.expr[':'], {
      value: function(a) {
        return $(a).val();
      }
    });

    $('form a.submit').click(function(evt){
      $(this).parents('form').get(0).submit();
      evt.preventDefault();
    });

    $("input").each(function() {
      $(this).attr("alt", $(this).attr("value"));
    });

    $("input").focus(function(){
      if ($(this).attr("type") == "text" && $(this).attr("value") == $(this).attr("alt")) {
        $(this).attr("value", "");
      }
    });

    $("input").blur(function(){
      if ($(this).attr("type") == "text" && $(this).attr("value") == "") {
        $(this).attr("value", $(this).attr("alt"));
      }
    });

  });

})(jQuery)
