﻿// Homepage Facet Reveal


$('document').ready(function() {
    /*
    $('#reveal a').attr('href', '#').toggle(
    function() {
    $(this).text('Show less');
    $('#reveal').removeClass('more').addClass('less');
    $('#home-facet-lists').animate({ height: 50 + 'em' }, 500);
    },
    function() {
    $(this).text('Show more');
    $('#reveal').removeClass('less').addClass('more');
    $('#home-facet-lists').animate({ height: 24 + 'em' }, 500);
    }
    );
         
    */


    var height = $('#home-facet-lists').height(); // Get natural (auto) height of the element

    $('#home-facet-lists').css('height', '24em'); // Set the height to only reveal the first search field

    $('#reveal a').attr('href', '#').toggle(
                                                                function() {
                                                                    $(this).text('Show less').removeClass('more').addClass('less');
                                                                    $('#home-facet-lists').animate({ height: height }, 500).css("padding-bottom","40px");
                                                                },
                                                                function() {
                                                                    $(this).text('Show more').removeClass('less').addClass('more');
                                                                    $('#home-facet-lists').animate({ height: 24 + 'em' }, 500).css("padding-bottom","0px");
                                                                }
                                                );

});

