﻿//*************************************************************************************
// File     : nwec_functions.js
// Version  : 1.1
// Requires : jquery.js (version 1.2.6+), and braingnat.js (version 0.0.4+)
// Author   : Kyle Weems (ksw)
// Origin   : mindfly.com
// Created  : August 8, 2008
// Modified : September 10, 2008
// Purpose  : A set of functions specific to nwec.
//*************************************************************************************

// when the page has loaded, expand the content's height if it's not tall enough to fit the page.
$(document).ready(function() { setContentHeight(); });
$(document).ready(function() { hideEmptyList(); });
$(window).resize(function() { setContentHeight(); });


// hideEmptyList()
//
// Hides empty uls.
function hideEmptyList() {

    $('ul').each(function() {
        if ($(this).children().length == 0) {
            if (!$(this).prev().is('a[title="Resources"]')) {
                $(this).remove();
            }
        }
    });
}