A couple of things... I'm not javascript expert, but those links just don't seem right. Usually I see a call as
Code:
<a href="javascript:function()">blahblah</a>
The second thing I notice is that you are using an id in your div tags <div id="p7tpb1_1" class="down"> that is not unique. You should be grabbing the postid and using that in the id to create a unique id - <div id="p7tpb1_$postid_1" class="down">. You cannot have two things with the same id or it doesn't work (as you can see in your second post).