var conf = { 
     
    // default clip configuration 
    defaults: { 
        autoBuffering: false, 
        baseUrl: 'http://aif.developabilene.com/videos'
    }, 
     
    // my skins 
    skins: {         
        aif: { 
			// display properties 
			bottom: 0, 
			height: 24, 
			backgroundColor: '#C7C7C7',
			backgroundGradient: 'none',
	 
			// controlbar-specific configuration 
			bufferColor: '#021288',
			progressColor: '#1354E4',
			durationColor: '#ffffff',
			timeColor: '#F9D18C',
			sliderColor: '#F4F8FF',
			buttonColor: '#1354E4',
			buttonOverColor: '#2ABB41',
			volumeSliderColor: '#8A8A8A',
			timeBgColor: '#8A8A8A',
			autoHide: 'never',
	 
			// which buttons are visible and which are not? 
			play: true,
			volume: false,
			mute: false, 
			time: true, 
			stop: false, 
			playlist: false, 
			fullscreen: false, 
	 
			// scrubber is a well-known nickname for the timeline/playhead combination
			scrubber:true
        } 
         
        // setup additional skins here ...         
    } 
	
};