// JavaScript Document


var conf = { 
     
    // default clip configuration 
    defaults: { 
        time:false, 
        autoPlay: true, 
        autoBuffering: true, 
     //   baseUrl: 'http://blip.tv/file/get', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        } 
         
    }, 
     
    // skins 
    skins: {         
        gray:  { 
            backgroundColor: '#c2c0c0', 
            buttonColor: '#1D4365', 
            opacity: 1, 
			height: 17,
			fullscreen: true,
            time: false
        } 
         
        // setup additional skins here ...         
    } 
     
}