//=======================================================================================================
//-------------------------------------------------------------------------------------------------------
//	Custom Javascript functions
//-------------------------------------------------------------------------------------------------------
//=======================================================================================================
$(document).ready(function() {

	$(".sm2_link").toggle(
		function (event) {
			event.preventDefault();
			
			$(this).removeClass('sm2_paused');
			$(this).addClass('sm2_playing');
			
			var id = $(this).attr('id').substring(7);

			var selector_id = $(this).attr('id');

			soundManager.play(id,{
				onfinish:function(){
					resetlink(selector_id);
				}
			});
		},
		function (event) {
			event.preventDefault();
			$(this).removeClass('sm2_playing');
			$(this).addClass('sm2_paused');

			var id = $(this).attr('id').substring(7);
			soundManager.stop(id);
		}
	);
});

function resetlink(selector_id)
{
	$('#'+selector_id).click();

	$('#'+selector_id).removeClass('sm2_playing');
}