salve ragazzi,
mi iscrivo a questo forum per chiedervi un aiuto...

ho trovato questo interessante articolo nel vostro portale e vorrei integrare il player nel mio forum con board phpbb3.

ho provato già ad inserire il codice in index_body.html (precisamente subito sotto la barra del search di google) ma non succede nulla.

devo per caso aggiungere altro a questo codice?

codice:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.jmp3.js"></script>
<script type="text/javascript">
	// hard-wired options
	var playerpath = "http://www.undergroundsound.org/public/player/singlemp3player.swf";
	$(document).ready(function(){
			$(".sound").jmp3({
			backcolor: "000000",
			forecolor: "ffffff",
			width: 300,
                        repeat: "no",
                        autoplay: "false",
			showdownload: "true",
			showfilename: "false"
		});
	});
</script>
</head>
</html>