/* JW MEDIAPLAYER */
var player = null;
function playerReady(thePlayer) {
	player = window.document[thePlayer.id];
}

function createPlayer(theFile, theAutostart) {
	var flashvars = {
			file:theFile, 
			autostart:theAutostart,
			backcolor:"111111",
			frontcolor:"ffffff"

	}
	var params = {
			allowfullscreen:"false", 
			wmode: "transparent"
	}
	var attributes = {
			id:"audioplayer",  
			name:"audioplayer"
	}
	swfobject.embedSWF("js/mediaplayer/player.swf", "audioplayer", "369", "24", "7.0.0", false, flashvars, params, attributes);
}

