jQuery( document ).ready(function()
{
	function playURL(url)
	{
		var myFlashMovie = document.getElementById("tinyplayer");
		if (myFlashMovie != null)
		{
			myFlashMovie.playURL(url);
		}
	}

	jQuery('.palyerPlayLink').click(function(event){
		event.preventDefault();
		if ($(this).hasClass('playing'))
		{
			jQuery(this).children('img').attr('src','images/icons/play.gif');
			jQuery(this).removeClass('playing');
			playURL('');
		}
		else
		{
			jQuery('.palyerPlayLink').children('img').attr('src','images/icons/play.gif');
			jQuery(this).children('img').attr('src','images/icons/stop.gif');
			jQuery('.palyerPlayLink').removeClass('playing');
			jQuery(this).addClass('playing');
			playURL(jQuery(this).attr('href'));
		}
		return false;
	});

});
