flowplayer("player", 
		   {   
		   src: "http://www.onionbooty.com/objects/swf/flowplayer.commercial-3.1.1.swf",   
		   wmode: "transparent" },
		  {
		  key: '$8efb41ecc9bfe7f077e',
		  
		  clip: {        
		  autoPlay: true,          
		  autoBuffering: true,
		  onBegin: function() {         
		  this.getControls().fadeIn(4000);         
		  }  
		  } ,
		   
		  plugins: {        
		  controls: {  
		  timeColor: '#212121',
		  height:20,
		  progressColor: '#000000',
		  bufferColor: '#45a1ff', 
		  
		  buttonColor: "#484848",
		  buttonOverColor: '#45a1ff',                    
		  
		  backgroundColor: '#0000000',  
		  fontColor: '#ffffff',
		  timeFontColor: '#ffffff',         

		  tooltipColor: '#45a1ff', 
				  
		  tooltips: {                
		  buttons: true,                 
		  fullscreen: 'Enter Fullscreen mode'}}
		  },  

		  canvas:  { 
		  backgroundGradient: 'none',  
		  border:'2px solid #000' }
 });

$(function() {
$("#obdd li ul").addClass("jqhide");

$("#obdd li").hover(
   	function() {
   	    $(this).children("ul").slideDown();
   	},
	function() {
	    $(this).children("ul").slideUp();
});
 });