/* Author: Arnedelic - arnevaa@gmail.com

*/

$(function()
{
    // boxes default to closded, except the first
    $('.boxtitle.lineup').next().hide();

    // show/hide boxes on click
    $('.boxtitle.lineup').click( toggleBox );

    function toggleBox()
    {
        // current .boxcontent div to hide
        var current = $(this);
        // toggle the class of it's corresponding boxtitle
        current.toggleClass('closed', 'addOrRemove');
        // toggle the boxcontent
        current.next().slideToggle('slow');
    }
});


























