// This is the maximum limit to how many products are returned in the dropdown box
productLimit	= 15;

// This is how wide the dropdown box is
// If you want this to be as wide as the search textbox, use the line below
// (note this is not recommended as the search box is usually not wide enough)
// document.productsearchform.elements["substring"].offsetWidth
dropDownWidth	= 400;

// This is how you want the dropdown to be aligned.  If you have your search box
// on the right, you want this to be aligned right, if you have your search box
// on the left, then you you want this aligned left
dropDownAlignment = "left";

