var base_path = '/stylesheets-pic/';
var config_limit = 15;

// Apply a jQuery autocomplete to the brand box
$('#mainbrandsearch').autocomplete(base_path + 'tag_ajax.php', {
  extraParams: {
    t: 'brand'
  },
  mustMatch: false,
  highlight: false,
  scroll: false
});

function focusSearch() {
  document.getElementById('mainbrandsearch').className = '';
}

function blurSearch() {
  if (document.getElementById('mainbrandsearch').value != '') return;
  document.getElementById('mainbrandsearch').className = 'ss_search';
}
