Mission: To use checkboxes to toggle divs. Inputs 1 and 2 control the same div
$("input[type=checkbox]").click(function(){
divClass = $(this).attr("class");
if ($(this).is(":checked")) {
$("#" + divClass).show();
}
else if($(this).not(":checked")) {
$("#" + divClass).hide();
}
});