
$(document).ready(function() {
	$(".child").hide();
	$("#first").show();
});
      
function showChild(id)
{
	$(".child").hide();
	document.getElementById(id).style.display="block";
}
