$(document).ready(function() {
	$('.checkChild').hide();
	checkboxes = $('.radioCheck').find('.showBox').get();
	$.each(checkboxes,
	function() {
	 $(this).click(function() {
	  if (checkInputStatus($(this))) {$(this).parent('li').find(".checkChild:first").show("slow");}
	  else {$(this).parent('li').find(".checkChild:first").hide("slow");}
	 });
	});
	
	function checkInputStatus(input) {if ($(input).attr('checked')) { return true }};
});
