// Flowplayer initiate;

flowplayer("player", "../inc/_templates_/xite/_swf/flowplayer-3.1.5.swf", { 
    // use the first frame of the video as a "splash image" 
    clip: { 
        autoPlay: false, 
        autoBuffering: false 
    }, 
     
    // controlbar settings 
    plugins:  { 
        controls: {             
             
            // setup a background image 
            background: '#FFF url(../inc/_templates_/xite/images/layout/025.png) repeat', 
             
            /* you may want to remove the gradient */ 
            // backgroundGradient: 'none', 
             
            // these buttons are visible 
            all:false, 
            scrubber:true, 
            play:true, 
            mute:true, 
			time:true,
             
            // custom colors 
            bufferColor: '#333333', 
            progressColor: '#5b1055',             
            buttonColor: '#5b1055', 
            buttonOverColor: '#580f52',
			timeColor: '#580f52',
             
            // tooltip background color (since 3.1.0) 
            tooltipColor: '#cc0000', 
             
            // custom height 
            height: 41, 
             
            // setup auto hide 
            autoHide: 'never',             
             
            // a little more styling              
            width: '100%',  
            bottom: 0,
            left: '50%', 
            borderRadius: 5, 
 
             
        } 
    } 
});
