// Global JavaScripts

$(function() {
    if ($('.form').length > 0) {
        $('.form .focusable').focus(function() {
            $(this).parents('.formRow').addClass("currentRow");
        }).blur(function() {
            $(this).parents('.formRow').removeClass("currentRow");
        });
    }
});
 