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) {
$("li").click(function(e) { if ($(this).index != 0 ) { /* do something */ } });