/* festivals javascript */

/* namespace everything under the festivals global */
var Festivals = {};

jQuery(function() {
    jQuery('#search_artists')
    .attr('autocomplete', 'off')
    .suggest(
        jQuery('#artist_search').attr('action'),
        {
            onSelect: function() {
                jQuery('#artist_search .btn')[0].focus();
            }
        }
    );
});
