// JavaScript Document
function Play (file) {
	var path = '<embed src="music/' + file + '.mp3" autostart="true" loop="true" hidden="true" height="0" width="0">';
	document.getElementById(file).innerHTML = path + '<img src="image/special/stop.png" width="30" height="30" onclick="Stop(' + "'" + file + "'" + ')">';
}
function Stop (file) {
	document.getElementById(file).innerHTML = '<img src="image/special/play.png" width="30" height="30" onclick="Play(' + "'" + file + "'" + ')">';
}