// JavaScript Document
        // install flowplayer into container 
        $f("flowplayeraudio", "/swf/flowplayer-3.1.4.swf", { 
         
            // fullscreen button not needed here 
            plugins: { 
                controls: { 
                    // which tooltips are shown and which are not? 
                    tooltips:  { 
                        // a shortcut for enabling tooltips for buttons (English) 
                        buttons: true, 
                 
                        // customize the pause button text 
                        pause: 'Continue playing', 
                        play: 'Click to Play'
                        },
                    fullscreen: false, 
                    height: 30, 
                    backgroundColor: '#6A1825',
                    all:false, 
                    play:true, 
                    volume:true, 
                    mute:true, 
                    time:true, 
                    stop:false, 
                    playlist:false, 
                    fullscreen:false, 
                    scrubber:true, 
                    gradient: 'low',
                    height:30, 
                    progressColor: '#666666', 
                    bufferColor: '#333333', 
                    buttonColor: '#333333', 
                    timeColor: '#ffffff',
                    timeBgColor: '#666666',
                    durationColor: '#000000',
                    buttonOverColor: '#666666',
                    sliderGradient: 'low'
                } 
            }, 
         
            clip: { 
                autoPlay: false, 
         
                // optional: when playback starts close the first audio playback 
                onBeforeBegin: function() { 
                    $f("player").close(); 
                } 
            }, 
                    // time display positioned into upper right corner 
            time: { 
                url: '/swf/flowplayer.controls-3.1.4.swf', 
                top:0, 
                backgroundGradient: 'none', 
                backgroundColor: 'transparent', 
                buttonColor: '#333333', 
                all: false, 
                time: true, 
                height:40, 
                right:30, 
                width:100  
            }
        });
        
