jQuery(document).ready(function()
	{
	jQuery('#tvstoryaudio1_edit, #tvstoryaudio2_edit, #tvstoryaudio3_edit, #tvstoryaudio4').change(function()
		{
		if (this.value.substr(this.value.length - 4) != '.mp3')
			{
			this.value = '';
			alert('Please upload MP3 files only');
			}
		});

	jQuery('#audio-player1, #audio-player2, #audio-player3, #audio-player4').each(function()
		{
		var playerURL, playerFile;

		playerURL = jQuery(this).find('a').get(0).href;
		playerFile = playerURL.substr(playerURL.indexOf('assets/files/'));
		swfobject.embedSWF(
			"assets/templates/goingandcoming/flash/player.swf", this.getAttribute('id'), '300', '20', '8',
			"assets/templates/hakuba/flashplayer/expressInstall.swf",
			{ autostart: false, frontcolor: "ffffff", backcolor: "004c9b", lightcolor: "00ff00", icons: false, file: playerFile },
			{wmode: 'transparent'});
		});
	});

