(function(){

    $('h3.icon').click(function(){

        var el = $(this);        
        
        if(el.hasClass('open')){
            el.removeClass('open');
            el.next().removeClass('open');
            el.children('.expand').html('+');
        }
        else {

            $('.detail').removeClass('open');
            $('h3.icon').removeClass('open');
            $('h3.icon').children('.expand').html('+');

            el.addClass('open');
            el.next().addClass('open');
            el.children('.expand').html('-');
        }
    });

    var params = {
            menu: "false",
            quality: "high",
            allowFullScreen: "true",
            wmode: "window",
            salign: "",
            scale: "showall"
        };

        swfobject.embedSWF("flash/videoplayer.swf", 
        "video-player", 
        "480", 
        "290", 
        "9.0.0", 
        "expressInstall.swf", 
        {
            flvPath: "../video/Steinlager_We_Believed.flv",
            skinPath: "flash/videoplayerskin.swf"
        }, 
        params);
    
})();

