findproducts = new Array(
  	"1 Day Acuvue Astigmatism Toric 30pk",
	"1 Day Acuvue Astigmatism Toric 90pk ",
	"1 Day Acuvue Define Accent 30pk",
	"1 Day Acuvue Define Vivid 30pk",
	"1-Day Acuvue Moist 30pk",
	"1-Day Acuvue Moist 90pk",
	"30ml lens cleaner + 180ml refill",
	"60ml lens cleaner",
	"ACL",
	"Acti Toric",
	"Activize",
	"Activize 1 Day",
	"Activize 30 A",
	"Activize 30 H",
	"Activize 30 H-",
	"Activize 30 H+",
	"Activize 30 V",
	"Activize Colours (single)",
	"Activize Multi Purpose Small",
	"Activize Multi Purpose Twin Large",
	"Acuvue",
	"Acuvue 2",
	"Acuvue 2 Colour Enhancers",
	"Acuvue 2 Colour Opaque",
	"Acuvue Advance",
	"Acuvue Advance Astigmatism Toric",
	"Acuvue Bifocal",
	"Acuvue Oasys",
	"Air Optix",
	"Air Optix Astigmatism",
	"Allergan",
	"Allergan Optive Eye Drops",
	"AMO",
	"AOSEPT Plus",
	"AOSEPT Plus value pack",
	"AquaComfort Plus Dailies 30pk",
	"AquaComfort Plus Dailies 90pk",
	"Aquify Value pack",
	"Bausch & Lomb",
	"Biofinity",
	"Biomedics 1 day 30pk",
	"Biomedics 1 day 90pk",
	"Biomedics 1 day Torics 30pk",
	"Biomedics XC",
	"Capricornia",
	"Ciba Vision",
	"Complete Multi-Purpose Easy Rub Travel pk",
	"Cooper Vision - Hydron",
	"Crazy Lenses",
	"Expressions Accent",
	"Extreme H2O",
	"Focus 2 Weekly",
	"Focus Colours Monthly",
	"Focus Dailies All Day Comfort 30pk",
	"Focus Dailies All Day Comfort 90pk",
	"Focus Dailies Progressives",
	"Focus Dailies Toric Aqua",
	"Focus Monthly Visitint",
	"Focus Night & Day",
	"Focus Progressive",
	"Focus Softcolours 1-2 Weekly",
	"Frequency 55",
	"Frequency 55 Plus",
	"Frequency 58 UV",
	"Frequency Dailies 30 Pk",
	"Frequency Dailies 90 Pk",
	"Frequency XCEL Toric",
	"Frequency XCEL XR Toric",
	"FreshLook Colour Blends 6pk",
	"Freshlook Colourblends 2pk",
	"FreshLook Colours 2pk",
	"Freshlook Colours 6pk",
	"Freshlook Colours Dailies 10pk",
	"Freshlook Dimensions",
	"Freshlook Radiance 2pk",
	"Freshlook Radiance 6pk",
	"Freshlook UV",
	"Gelflex",
	"I-series",
	"Johnson & Johnson",
	"O2 Optix",
	"Oasys",
	"OPTI-FREE RepleniSH",
	"OPTI-FREE RepleniSH Promo",
	"Optima Colors",
	"Pinnacle 4 wkly sph",
	"Precision UV 3pk",
	"Proclear",
	"Proclear 1-Day 30pk",
	"Proclear 1-Day 90pk",
	"Proclear Multifocal D",
	"Proclear Multifocal N",
	"Proclear Toric",
	"Purevision",
	"Purevision Multifocal High",
	"Purevision Multifocal Low",
	"Purevision Toric",
	"ReNu Moisturelock Value Pack",
	"ReNu MultiPlus 355ml",
	"Soflens 38",
	"Soflens 59",
	"Soflens Mulitfocal High",
	"Soflens Multifocal Low",
	"Soflens Toric",
	"Speciality Choice AB"
);

var sug = "";
var sug_disp = "";

function getProduct() {
  var input = document.forms['HomeSearch'].findproduct.value;
  var len = input.length;
  sug_disp = ""; sug = "";

  if (input.length) {
    // get matching product from array
    for (ele in findproducts)
    {
      if (findproducts[ele].substr(0,len).toLowerCase() == input.toLowerCase())
      {
        sug_disp = input + findproducts[ele].substr(len);
        sug = findproducts[ele];
        break;
      }
    }
  }
  document.forms['HomeSearch']._findthis.value = sug_disp;
  if (!sug.length || input == sug_disp)
    document.getElementById('sug_btn').style.display = "none";
  else
    document.getElementById('sug_btn').style.display = "block";
}

function setProduct() {
  document.forms['HomeSearch'].findproduct.value = sug;
  hideSug();
}

function hideSug() {
  document.forms['HomeSearch']._findthis.value = "";
  document.getElementById('sug_btn').style.display = "none";
}
