$(document).ready(function(){
  $('ul#header-img').innerfade({
    speed: 1500,
    timeout: 8000,
    type: 'random_start',
    containerheight: '250px'
  });

  function formatItem(row)
  {
    return row[0] + ' (<strong>id: ' + row[1] + '</strong>)';
  }

  function formatResult(row)
  {
    return row[0].replace(/(<.+?>)/gi, '');
  }

  $('.locations').autocomplete(cities, {
    minChars: 0,
    max: 10,
    mustMatch: true,
    matchContains: true,
    scrollHeight: 100
  });

  $('#clear').click(function() {
    $(':input').unautocomplete();
  });

});
