﻿$(document).ready(function() {
    flowplayer(".flowPlayer", "http://releases.flowplayer.org/swf/flowplayer-3.2.2.swf", { 
     
        // fullscreen button not needed here 
        plugins: { 
            controls: {  
                autoBuffering: false,
                autoPlay: false                
            } 
        }
     
    });
    
    // install flowplayer into container 
    $f(".audioFlowPlayer", "/CoreCode/flash/flowplayer/flowplayer-3.2.2.swf", { 
     
        // fullscreen button not needed here 
        plugins: { 
            controls: { 
                fullscreen: false, 
                height: 30 
            } 
        }, 
     
        clip: { 
            autoPlay: false, 
     
            // optional: when playback starts close the first audio playback 
            onBeforeBegin: function() { 
                $f("player").close(); 
            } 
        } 
     
    });
});