$(document).ready(function () {
	var audioControl = 0;
	$('#sound-control').click(function(e) {
		e.preventDefault();
		if (audioControl == 0) {
			audioControl = 1;
			$('#sound-control').css('background-position', '0 -12px');
			$('#sound-control').hover(function () {
				$('#sound-control').css('background-position', '0 0');
			}, function () {
				$('#sound-control').css('background-position', '0 -12px');
			});
		}
		else {
			audioControl = 0;
			$('#sound-control').css('background-position', '0 0');
			$('#sound-control').hover(function () {
				$('#sound-control').css('background-position', '0 -12px');
			}, function () {
				$('#sound-control').css('background-position', '0 0');
			});
		}
		niftyplayer('niftyPlayer1').playToggle();
	});
});