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+'">Download MP3<br/>(Right click, save as)</a></p><p><a href="e_index.shtml">Back to list</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>Please select an article to listen to or download (Welsh language only):</p><form method="post">';
		formCode += '<select name="file" id="file" onChange="selectAudio(this.value);" style="margin-bottom:20px">';
		formCode += '<option value="">Please select...</option>';
		formCode += myFormCode;
		formCode += '</select>';
		formCode += '</form>';
		
		$("div#noscript-content").html(formCode);

	});
