  $(function() {
  
  	// setup overlay actions to buttons
  	$("span[rel]").overlay({
  
  		// use the Apple effect for overlay
  		effect: 'apple',		
  		
  		expose: '#789',				
  		
  		onLoad: function(content) {
  			// find the player contained inside this overlay and load it
  			this.getOverlay().find("a.myPlayer").flowplayer(0).load();
  		},
  		
  		onClose: function(content) {
  			$f().unload();
  		}
  	});				
  	
  	// install flowplayers
  	$("a.myPlayer").flowplayer("http://cit.vfu.cz/~bartovae/flashvideo/spolecne_soubory/flowplayer-3.1.5.swf"); 
  });	
