/*
* Set up some fantastically exciting JavaScript effects.
*/

$(document).ready(function () {
    $('.mooshy:not(.mooshy-processed) li i')
        .click(function () {
            $(this)
                .toggleClass('mooshed')
                .next().slideToggle('slow');
        })
        .addClass('mooshy-processed')
        .next().hide();
});