// Mp3 Player
var flashvars = {};
			// the URL path to the .mp3 file to be played (required)
			flashvars.trackURL = "http://www.daveymorgan.com/davey.mp3";
			// the color of all elements except playhead (optional; default: 0x3399cc)
			flashvars.color1 = "0x8CC63F";
			// the color of the playhead (optional; default: 0xFF6666)
			flashvars.color2 = "0x669900";
			// if set to "true" the track will start playing once the player is loaded in the page (optional; default: false)
			flashvars.autoPlay = false;
			// the default volume. possible values: 0, 1, 2, 3
			flashvars.volume = 2;
			
			var params = {};
			// possible values: window, opaque, transparent (optional)
			params.wmode = "transparent";
			
			swfobject.embedSWF("a2.swf", "a2", "100", "21", "9.0.0", false, flashvars, params);
