As you can see, the links work now so that means there’s a problem with the code in your theme. You still however need to fix this code:
<html>
<head></head>
<body>
<script type='text/javascript' src='/wp-content/jwplayer//swfobject.js'></script>
<div id='preview'>This div will be replaced</div>
<script type='text/javascript'>
var s1 = new SWFObject('/wp-content/jwpplayer/player.swf','ply','150','20','9','#ffffff');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addParam('flashvars','file=/wp-content/music/bangles_-_manic_monday.mp3&duration=182');
s1.write('preview');
</script>
</body>
</html>
It should be:
<script type='text/javascript' src='/wp-content/jwplayer//swfobject.js'></script>
<div id='preview'>This div will be replaced</div>
<script type='text/javascript'>
var s1 = new SWFObject('/wp-content/jwpplayer/player.swf','ply','150','20','9','#ffffff');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addParam('flashvars','file=/wp-content/music/bangles_-_manic_monday.mp3&duration=182');
s1.write('preview');
</script>