(function(){

	function handleMp3s() {
		var mp3s = $("a[href$='.mp3']");
		mp3s.each(function(i){
			var el = $(this), href = el.attr('href');
			el.parent().append(createFlash(href, i));
		})
	}
	function createFlash(href, i){
		var obj =
			" <object type='application/x-shockwave-flash' data='http://www.kotorino.com/swf/player.swf' id='audioplayer" + i + "' height='24' width='290'>"
		+	"<param name='movie' value='http://www.kotorino.com/swf/player.swf'>"
		+	"<param name='FlashVars' value='playerID=audioplayer1&soundFile=" + href +"'>"
		+	"<param name='quality' value='high'>"
		+	"<param name='menu' value='false'>"
		+	"<param name='wmode' value='transparent'>"
		+	"</object>";
		return obj;
	}
	$(function(){

		if ($('#news').length){
			$('#news').load('/html/news.html');
		};
		handleMp3s();
		
	});	
	
})();
