﻿$(function() {
    $('input[hint!=""]').hint();
});

function postRemote(url) {
    $("body form:first").attr('action', url);
}

$(document).ready(function() {
    if ($('#subPageLeftColumn') != null) {
        if ($('#subPageLeftColumn').height() < $('#mainColumn').height()) {
            $('#subPageLeftColumn').height($('#mainColumn').height());
        }
    }
});