

#page {
width:300px;
height:280px;
margin-top:100px;
margin-left:250px;

border:1px #FFFFFF solid; outline:1px solid #ccc;
text-align:center;
font-family: normal 12pt Verdana, Arial, Courier; color: #333333;
}

h1, h2 {
letter-spacing:1px;
color:#2D5AC3;
font-weight:normal;
margin-bottom:-10px;
}

h1 {
font-size:22px;
}

h2 {
font-size:18px;
}

.less {
color:#999;
font-size:12px;
}

a {
color:#295c72;
}

<script>
$(function() {

        // setup player without "internal" playlists
        $f("player", "/flowplayer-3.1.4.swf", {
                clip: { baseUrl: 'http://www.webinfo-berlin.de/flowplayer1/example' }


        // use playlist plugin. again loop is true
        }).playlist("#myplaylist", {loop:true});

});

/* adds new entry into playlist */
function newEntry() {

        // uses normal jQuery append method. no additional coding
        $("#myplaylist").append(
                '<a href="dog.flv">' +
                        'Dynamically added playlist entry' +
                        '<span>From JavaScript</span>' +
                        '<em>0:21 sec</em>' +
                '</a>'
        );
}

/* standard jQuery method to remove last entry from the playlist */
function removeEntry() {
        $("#myplaylist a:last").remove();
}
</script>



