How do you know if the current element is not the first-child?
It should work with $(this), for example:
$(this)
$(\"li\").click(function(e) {
If you would like to select everything except the first child, this is how to do it:
$('#some-parent').children().not(':first')