$(document).ready(function ()
{
    $(".SingleSubmitForm").submit(function ()
    {
        if (!$(this).data("submitted"))
        {
            //var submitButton = $(this).children("input[type='submit']");
            $(this).data("submitted", true);
            return true;
        }
        else
        {
            return false;
        }
    });
});
