There only appear to be two drop contents in your post, and their drop content is the same. You have only initialized one of them -
Replace:
Code:
<script type="text/javascript">
//Call dropdowncontent.init(anchorID, positionString, glideduration) at the end of the page:
dropdowncontent.init("searchlink", "right-bottom", 500)
dropdowncontent.init("contentlink", "left-top", 1000)
</script>
with:
Code:
<script type="text/javascript">
//Call dropdowncontent.init(anchorID, positionString, glideduration) at the end of the page:
dropdowncontent.init("searchlink", "right-bottom", 500)
dropdowncontent.init("searchlink2", "left-top", 1000)
</script>
Even after fixing that, you will see that the second one is mostly off screen. But that's where you've told the script to put it:
Code:
dropdowncontent.init("searchlink", "right-bottom", 500)
dropdowncontent.init("searchlink2", "left-top", 1000)
Bookmarks