$(function() {

    $('div#entertainment .container h2').each(function() {
        $(this).parent()
            .prev()
            .text($(this).text());
        $(this).remove();    
    });
    
    $('div#entertainment .active').slideDown();
    
    $('div#entertainment .trigger').each(function() {            
        $(this).click(function() {
        
            $('div#entertainment .active').slideUp(function() {
                $(this).prev().removeClass('clicked');
                $(this).removeClass('active');
                
            });
            
            $(this).next().slideDown(function() {
                $(this).prev().addClass('clicked');
                $(this).addClass('active');
                
            });
            
        });
    });
    
});
