jQuery(document).ready(function(){
	isCheckBoxChecked();
	jQuery("#ClientDownloadProblem").click(function() {
		isCheckBoxChecked();
	})
});

function isCheckBoxChecked() {
	if(jQuery("#ClientDownloadProblem").is(":checked")) {
		jQuery("#download-problem-information").slideDown("slow");
	} else {
		jQuery("#download-problem-information").slideUp("slow");
	}
}
