$(document).ready(function() {
	$(".condition-item").click(function() {
		$(this).children("DIV").toggle();
	});
});
