//Styling af mp3 afspilleren

AudioPlayer.setup("player.swf", {  
	
	
	autostart: 			"no", 			//if yes, player starts automatically
	loop: 				"no", 			//if yes, player loops
	animation: 			"yes", 			//if no, player is always open
	remaining: 			"no", 			//if yes, shows remaining track time rather than ellapsed time
	noinfo: 			"no", 			//if yes, disables the track information display
	initialvolume: 		60, 			//initial volume level (from 0 to 100)
	buffer: 			5, 				//buffering time in seconds
	encode: 			"no", 			//indicates that the mp3 file urls are encoded
	checkpolicy: 		"no", 			//tells Flash to look for a policy file when loading mp3 files(this allows Flash to read ID3 tags from files hosted on a different domain)
	rtl: 				"no", 			//switches the layout to RTL (right to left) for Hebrew and Arabic languages
	width: 				290, 			//width of the player. e.g. 290 (290 pixels) or 100%
	transparentpagebg: 	"yes",			//if yes, the player background is transparent (matches the page background)
	pagebg: 			"no", 			//player background color (set it to your page background when transparentbg is set to ‘no’)
    bg: 				"000000",		//Background
    leftbg: 			"333333",		//Speaker icon/Volume control background
    lefticon: 			"FFFFFF",		//Speaker icon
    voltrack: 			"FFFFFF",		//Volume track
    volslider: 			"000000",		//Volume slider
    rightbg: 			"333333",		//Play/Pause button background
    rightbghover: 		"000000",		//Play/Pause button background (hover state)
    righticon: 			"FFFFFF",		//Play/Pause icon
    righticonhover:		"FFFFFF",		//Play/Pause icon (hover state)
    loader: 			"CCCCCC",		//Loading bar
    track: 				"000000",		//Loading/Progress bar track backgrounds
    tracker: 			"333333", 		//Progress track
    border: 			"CCCCCC", 		//Progress bar border
    skip: 				"666666",		//Previous/Next skip buttons
    text: 				"FFFFFF" 		//Text
}); 
