<!--

Here is a guide to the below XML (edit the xml below, NOT this guide):

width="280" - this attribute determines the final width of the player. I recommend you go no smaller than 150.

expandDirection="up" - this determines whether the songlist opens up or down, or not at all. "up" for up, "down" for down, "none" for it not opening (not showing a playlist)

autoStart="true" - this determines whether or not the player will automatically start to play music. "true" for it starting (as in the preview) and "false" for waiting for the user to click the play button or a track in the list before playing

each <song> node has a mandatory path attribute, that is the path to the mp3 file relative to the swf

each <song> node also has an optional CDATA element (optional as in you don't have to include it, or it doesn't have to be CDATA if you do) That is the text that displays in the playlist. If you just leave it blank, then the mp3 path will show in the playlist.

**** EDIT BELOW ****

-->

<songlist width="200" expandDirection="down" autoStart="true">
	<song path="mp3s/toofargone.mp3"><![CDATA[Too Far Gone - Todd Rundgren]]></song>
	<song path="mp3s/sweet.mp3"><![CDATA[Sweet - Todd Rundgren]]></song>
	<song path="mp3s/fadeaway.mp3"><![CDATA[Fade Away - Todd Rundgren]]></song>
	<song path="mp3s/toofargone.mp3"><![CDATA[Too Far Gone - Todd Rundgren]]></song>
	<song path="mp3s/noworldorder.mp3"><![CDATA[No World Order 1.1 - TR-i]]></song>
</songlist>