<script>
$(document).ready(function() {
$('.btn-mp3').click(function(){
if ($('.eq').hasClass("eq--off")) {
$('.eq').removeClass('eq--off');
$('.eq').addClass('eq--on');
} else {
$('.eq').removeClass('eq--on');
$('.eq').addClass('eq--off');
}
});
});
</script>