<!-- 

This is the configuration section for the music player. Save and then publish the 
flash movie (_source/musicPlayer/musicPlayer.fla) to see changes. 

Colors are just hex values with the # replaced by 0x (standard flash color value) 

-->	

<?xml version="1.0"?>

<config>	

	<!-- Do you want use php to generate the xml? - true | false -->	
	<usePhp>true</usePhp>
	
	<!-- How many seconds do you want to buffer the stream? -->	
	<buffTime>3</buffTime>
	
	<!-- do you wish to store the users volume preference? (on or off) - true | false-->
	<recordVol>true</recordVol>
	
	<!-- Default Alpha level of player (everything). Set to 100 on mouseover -  0-100 -->
	<playerAlpha>70</playerAlpha>
	
	<!--SOUND CONTROL-->
	
	<!-- how many milliseconds to cut from the start of the song 
	this is done in order to get a seemless loop (see help file) -->	
	<startCut>50</startCut>
	
	<!-- how many milliseconds to cut from the end of the song  -->
	<endCut>50</endCut>
	
	<!-- fade in speed of sound -->
	<fadeInSpeed>8</fadeInSpeed>
	
	<!-- fade out speed of sound -->
	<fadeOutSpeed>8</fadeOutSpeed>
	
	<!--PLAYER STATUS MESSAGES-->
	
	<!-- text to show when mp3 is streaming  -->
	<bufferingMsg>Buffering Music Stream...</bufferingMsg>
	
	<!-- text to add in front of song name when music is playing -->
	<nowPlayingMsg>Now Playing:</nowPlayingMsg>
	
	<!-- text for when the music player is off -->
	<offMsg>Music player is currently off</offMsg>
	
	<!-- color of message text -->
	<msgTextColor>0x626262</msgTextColor>
	

</config>		
