I can't seem to load the javascript playlist. I want to do styling of the playlist through css, but its not working for me. This is the code I am using to call upon the player and the playlist:
<div id='player1'></div>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<link rel="stylesheet" type="text/css" href="playlist.css" />
<script type="text/javascript" src="jquery.playlist.js"></script>
<script type='text/javascript' src='swfobject.js'></script>
<script type='text/javascript'>
var so = new SWFObject('player.swf','plyl','710','280','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','videos.xml');
so.addVariable('controlbar','over');
so.addVariable('image','images/programs/W/Images/warrenmiller.jpg');
so.addVariable('playlist','right');
so.addVariable('skin','plugins/content/jw_allvideos/bekle/beklehifi.swf');
so.addVariable('playlistsize','200');
so.write('player1');
</script>Another problem is that my preview image does not load as well. I am not using thumbnails in my playlist xml file, and just want to have a preview image on the player before the user clicks on any item on the playlist.
Thanks

Functioning Test Page here: http://willswonders.myip.org:8074/JavaScript Playlist.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html>
<head>
<link rel="stylesheet" href="playlist.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script src="jquery.playlist.js"></script>
<script src="swfobject.js"></script>
</head>
<body>
<div id="player1"><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Get the Adobe Flash Player to see this video.</a></div>
<script type='text/javascript'>
var so = new SWFObject('player.swf', 'plyl', '710', '280', '9.0.124');
so.addParam('allowscriptaccess', 'always');
so.addParam('allowfullscreen', 'true');
so.addVariable('file', 'videos.xml');
so.addVariable('controlbar', 'over');
so.addVariable('skin', 'plugins/content/jw_allvideos/bekle/beklehifi');
so.write('player1');
</script>
</body>
</html>