﻿$(document).ready(function ()
{
    $(".jquery_search_input").bind("keypress", function (event)
    {
        if (event.keyCode == 13)
        {
            var bind = $(".jquery_search_button").attr("href");

            event.cancelBubble = true;
            event.stopPropagation();
            eval(bind);

            return false;
        }

        return true;
    });
})
