$(document).ready(function (){
   $("#rslSearch").autocomplete("reg_enhanced.rsls", {matchContains:1,mustMatch:1,width:300});
   $("#btnRslSearch").click(function(){
      var regName = $("#rslSearch").val();
      if(regName !== ""){
         var params = "name=" + regName;
		    $.getJSON("/register/reg_enhanced.reg_no", params, function(data){
            window.location = "reg_pub_dsp.show_rsl_info?pi_reg_no=" + data["regNo"];
         });
      }
   });
   $("#rslSearch").blur(function (){
      $("#btnRslSearch").focus();
   });
   $.bt.options.width = 120;
   $("#regLeft a").bt( { cssClass: "bt",  fill: "rgba(226, 232, 240, 1)" } );
   $(".active").text($(".active a").text());
   $(".striped tbody tr:even").addClass("stripe");
});
