I have a online Slide Show I\'m working on using jQuery. I have use $(document).click event to detect when a user clicks on the page to know when to show the next bullet poi
You will most likely need to stop the propagation of events in your Comments div using the event object's stopPropagation() method:
$('#comments').click(function(e) { e.stopPropagation(); });
if that doesn't work try using preventDefault():
e.preventDefault();