/* mp3 player */
function mp3_player_init()
{
	var player = $('#player');
	var width = player.css('width');
	var height = player.css('height');
	
	var so = new SWFObject("flashmp3player.swf", "player", width, height, "9"); // Location of swf file. You can change player width and height here (using pixels or percents).
	so.addParam("quality", "high");
	so.addVariable("content_path","mp3"); // Location of a folder with mp3 files (relative to php script).
	so.addVariable("color_path","default.xml"); // Location of xml file with color settings.
	so.addVariable("script_path","flashmp3player.php"); // Location of php script.
	so.write("player");
	player.toggle();
}
