$(function() {
// install flowplayer and initialize mouse interactivity
	$("a.inlineplayer").flowplayer("media/swf/flowplayer-3.1.1.swf").hover(function() {
// find div.info element inside the player container and show it
	$("span.info", this).fadeTo("slow", 0.8);
}, function() {
// when mouse is removed - hide the info
	$("span.info", this).fadeTo("slow", 0);
}); 
// initially all info elements are hidden
	$("span.info").css("opacity", 0);
});
