$(function() {
	
	// install flowplayer and initialize mouse interactivity
	$("a#player").hover(function() {
			
		// find div.info element inside the player container and show it
		$("img", this).stop().fadeTo("slow", 1);
		
	}, function() {
		
		// when mouse is removed - hide the info
		$("img", this).stop().fadeTo("slow", 0);
	}); 
	
	// initially all info elements are hidden
	$("a#player img").css("opacity", 0);
	
});  
 
 
flowplayer("player", "includes/flowplayer.commercial-3.1.5.swf", 
	{ 
    key: '#@062350ab5f6a308aaad', 
 
    // rest of the Flowplayer configuration 
    plugins: {controls: null},
	clip: {autoBuffering: true}
});