/**  * Example external configuration file.  
 * You can freely categorize these nodes 
 */  
var conf = { 
   
 // default clip configuration
  defaults: {
    onBegin: function() {
      
      // make controlbar visible, fade lasts 4 seconds
      this.getControls().fadeIn(4000);
      background : 'http://ibill.manaodev/images/img4.gif'
         
    },
     autoPlay: false,            
     autoBuffering: true,
     baseUrl: 'http://blip.tv/file/get',
     
     onStart: function() {
       setTimeout(stopbuff, 1000);
       this.getControls().fadeIn(4000);
    } 
     
  }, 
   
  // my skins 
  skins: {     
    gray:  { 
      backgroundColor: '#666666', 
      buttonColor: '#333333', 
      opacity: 0, 
      time: false, 
      autoHide: false 
    } 
     
    // setup additional skins here ...     
  } 
   
} 
