If you rename your pages to end with the .php extension (instead of .htm or .html - and I'm only guessing since you havent posted a link), you should be able to use a php include;
1 - Remove this code from your pages and put it in a text file called "sticky.txt", saved in the same folder as your web pages;
Code:
<div id="sticky1">
Sticky Tooptip 1 content here...
</div>
<div id="sticky2">
Sticky Tooptip 2 content here...
</div>
<div id="sticky3">
Sticky Tooptip 3 content here...
</div>
2 - In place of the code (above) that you just removed from each page, add this line of code;
Code:
<?php include('sticky.txt');?>
Bookmarks