(function ($) {
  $(function () {
    $('.new-window').live('click', function () {
      window.open(this, null);
      return false;
    });

    $('.focus-clear').addClass("temp");

    $('.focus-clear').focus(function () {
      if (this.value == this.defaultValue) {
        this.value = '';
        this.className = 'focus-clear';
      }
    });

    $('.focus-clear').blur(function () {
      if (this.value == '') {
        this.value = this.defaultValue;
        this.className = 'focus-clear temp';
      }
    });

    $('.focus-first').focus();

    $('.confirm').click(function () {
      return confirm('Are you sure you want to delete this?');
    });

    $('.no-link').click(function () {
      return false;
    });

  });
})(jQuery);
