﻿$(document).ready(function() {
    $('#txtSearch').autocomplete({
        data: dataSource,
        scrollHeight: '250px',
        width: '210px',
        scroll: false
    });
});

function linkCity() {
    if (!$('#txtSearch').val() == ' ') {
        for (var i = 0; i < dataSource.length; i++) {
            if ($('#txtSearch').val() == dataSource[i]) {
                window.location = baseLink + "/City-Guide/" + $('#txtSearch').val().replace(' ', '-').replace(' ', '-').replace(' ', '-').replace(' ', '-').replace(' ', '-').replace(' ', '-').replace(' ', '-');
                break;
            }
        }
    }
}