/* Slideshow
--------
Author: Sovit Tamrakar
URl: http://ssovit.com
Version: 1.0
---------
*/
jQuery(document).ready(function ($) {
	$('.ssovit-music-control').live('click', function () {
		$status = $(this).attr('play');
		if ($status == 1) {
			$id = $(this).attr('rel');
			$player = $('#slider-player-' + $id);
			$player.jPlayer("pause");
			$(this).text('MUSIC ON');
			$(this).attr('play', '0')
		} else {
			$id = $(this).attr('rel');
			$player = $('#slider-player-' + $id);
			$player.jPlayer("play");
			$(this).text('MUSIC OFF');
			$(this).attr('play', '1')
		}
	});
});