﻿/*
 * Utility functions for the TreadCorp site
 * Requires jQuery
 */

// Appends the character * to the end of the search input field unless it's already there
$(function() {
  $("#searchtext").keypress(function(e) {
    if (e.which==13) {
      if (document.forms[0].action.indexOf("/eway")!=0) {
        document.forms[0].action="/eway/default.aspx";
      }
      if (this.value.lastIndexOf("*")!=this.value.length-1) {
        this.value+="*";
      }
    }
  });
  $("#searchbutton").click(function(e) {
    if (document.forms[0].action.indexOf("/eway")!=0) {
      document.forms[0].action="/eway/default.aspx";
    }
    var q=$("#searchtext").val();
    if (q.lastIndexOf("*")!=q.length-1) {
      $("#searchtext").val(q+"*");
    }
  });
});
