    $(document).ready(
            function()
            {
            // Hide some things that we use js to do...like the submit button on the state selection form.
            $('.jshide').hide();

            // Helpboxes
            $('a.peakdemandhelp').click(function()
                {
                $('div#popupCalcHelp').show();
                $('div#peakdemand_help').show();
                $('div.calcleft').find('select').hide();
                return false;
                });
            $('a.curtailmentcapabilityhelp').click(function()
                {
                $('div#popupCalcHelp').show();
                $('div#curtailment').show();
                $('div.calcleft').find('select').hide();
                return false;
                });
            $('a.reductioncapabilityhelp').click(function()
                    {
                    $('div#popupCalcHelp').show();
                    $('div#reduction').show();
                    $('div.calcleft').find('select').hide();
                    return false;
                    });
            $('a.utilityhelp').click(function()
                    {
                    $('div#popupCalcHelp').show();
                    $('div#utility').show();
                    $('div.calcleft').find('select').hide();
                    return false;
                    });
            $('a.closer').click(function()
                    {
                    $('div.scroller').hide();
                    $('div#popupCalcHelp').hide();
                    $('div.calcleft').find('select').show();
                    return false;
                    }
                    );

            }
);
