﻿$(document).ready(function () {
    $('#txtSearch').keydown(function (event) {
        if (event.keyCode == 13) {
            window.location = "/search?q=" + this.value; ;
            return false;
        }
    });
});
