So, I have a listener:
$('div#Team div.wrap ul').on('click', 'li:not(.current)', function(){
...
}
and
$('div#Team div.wrap ul li#' + hash.split("/")[1]).click();
but it won't trigger, I checked is the selector was garbing the correct LI, and it is grabbing the correct element. I tried manually copy and paste'ing the code "..." onto where I call the ".click()" that isn't working (with some minor adjustments for $(this)) and id too works, but that means I have duplicated code, which I don't want.
Thank you in advance.

'#' + hash.split("/")[1]– Andreas Sep 30 '12 at 14:21