function selectAudio(audiofile)
	{
	if (audiofile != ''){
	var s1 = new SWFObject("/flash/player_mp3_mini.swf","player","160","20","9","");
	s1.addVariable("slidercolor","#333333");
	s1.addVariable("loadingcolor","#333333");
	s1.addVariable("buttoncolor","#333333");
	s1.addVariable("mp3",audiofile);
	s1.write("content-audio");
	document.getElementById('content-audio').innerHTML += '<p class="nobg"><a href="'+audiofile+'">Lawrlwythwch MP3<br/>(Pwyswch y botwm dde ar eich llygoden a dewiswch save as)</a></p><p><a href="c_index.shtml">Yn &ocirc;l i&acute;r rhestr</a></p>';
	}
	else{
	document.getElementById('content-audio').innerHTML = '';
	}
	}
	
	$(document).ready(function(){
		var myFormCode;
		$("ul#noscript-list li").each(function(){
			var thisPath = $(this).children("a").attr("href");
			var thisString = $(this).children("a").html();
			myFormCode += '<option value="'+thisPath+'">'+thisString+'</option>';
		});
		
		var formCode = '<p>Dewiswch erthygl i wrando arni neu ei lawrlwytho:</p><form method="post">';
		formCode += '<select name="file" id="file" onChange="selectAudio(this.value);" style="margin-bottom:20px">';
		formCode += '<option value="">Dewis yma...	</option>';
		formCode += myFormCode;
		formCode += '</select>';
		formCode += '</form>';
		
		$("div#noscript-content").html(formCode);

	});
