﻿(function($) {

    var checkListCurrentSection = function() {
        if ($("#divSectionInfo").children().length != 0) {
            $("#divSectionInfo").show();
        }
    };

    var decorateContactInputFields = function() {
        $("#divNewsletter, #divQuickContact").find('input:text, textarea').inputDefault();
    };
    
    var decorateVisibleSection = function() {        
        if ($( "div[ @id *= 'divNewsletter' ]" ).length != 0) {
            $("#divQuickContact").removeClass().addClass("greenBlock");
        }
    }

    // page startup code

    $(document).ready(function() {
        checkListCurrentSection();
        decorateContactInputFields();
        decorateVisibleSection();
    });

})(jQuery);

