﻿$(function() {
    $('button#search').click(
        function(event) {
            $("form:first").submit();
        }
    );
});

