$(document).ready(function() {             
 
    // setup Flowplayer playlist from <div.items/> 
    $("div.items").playlist( 
     
        // flash parameters 
       { src: "/flash/FlowPlayer.swf", 
		bgcolor:'#000000'
		
		},
         
        // flowplayer configuration 
        {
			
			controlBarBackgroundColor: '0x99cddc', 
   initialScale:'scale', 
   showMenu:false,  
   showVolumeSlider:true, 
   showMuteVolumeButton:true, 
   controlBarGloss:'high',
   showPlayListButtons: false, 
   showFullScreenButton: true,
   loop: false,
   useHwScaling: true,
   mode: 'opaque',
   bufferBarColor1: 0xff7f00,
   bufferBarColor2: 0xff7f00,
   useNativeFullScreen: true,
   useSmoothing: true
   },  
         
        // playlist configuration 
        {loop:false} 
    ); 
     
    // make playlist scrollable    
	
    $("div.playlist").scrollable({size:3});   
	$("#player").click();
});
