$(document).ready(function() {
	
	$('.stopBtn').hide();
	
	$("a.togglePlay").click(function() {
									 
		 var currentVoiceId = $(this).attr("href");
		 //alert(currentVoiceId);
		 
		 
		 $("a.playBtn").toggle();
		 $("a.stopBtn").toggle();
		 
	});
	

	if($('body').hasClass('module-contact')){	
        set_select();
        check_other();
    }
    
    
});

// global
// var other_option = null;

function check_other(){
    var selected = $("#id_hear_about_us").find('option:selected');
    if(selected.html() == 'Other'){ 
        $('#other_option').show();
    }
    else{
         $('#other_option').hide();
         $('#other_option input')[0].value = ''
    }
}

function set_select(){
    $("#id_hear_about_us").change(check_other);
}

// function set_extra(){
//     // when the users input the details of the others
//     $('#other_source').change(function(){
//         // update the others option's value to the input value
//         $("#id_hear_about_us").find('option:selected').attr('value', $('#other_source').attr("value"))
//     });
// }