 $(document).ready(function(){

	$("#FLVPlayer").hover(function() {
	$(this).next("#box p").stop(true, true).animate({opacity: "show", top: "100"}, "fast");
}, function() {
	$(this).next("#box p").hide();
	});
 
});

