$(document).ready(function(){
	$('.testimonial_course_icon>img').click(function(){
		courseid = $(this).parent().parent().find('.testimonial_course_checkbox input[type=checkbox]').attr('name');
		switch($(this).parent().parent().find('.testimonial_course_checkbox input[type=checkbox]').attr('checked')){
			case "checked":
			case "true":
			case true:
				$(this).parent().parent().find('.testimonial_course_checkbox input[type=checkbox]').attr('checked','');
				$('#testimonial_body .testimonial_course_'+courseid).css('display','none');
				break;
			case "":
			case "false":
			case false:
				$(this).parent().parent().find('.testimonial_course_checkbox input[type=checkbox]').attr('checked','checked');
				$('#testimonial_body .testimonial_course_'+courseid).css('display','block');
				break;
		}
	});
	
	$('.testimonial_course_checkbox input').change(function(){
		courseid=$(this).attr('name');
		switch($(this).attr('checked')){
			case "checked":
			case "true":
			case true:
				$('#testimonial_body .testimonial_course_'+courseid).css('display','block');
				break;
			case "":
			case "false":
			case false:
				$('#testimonial_body .testimonial_course_'+courseid).css('display','none');
				break;
		}
	});
});