Footers:
<script type="text/javascript">
var tab = document.getElementsByTagName("table");
//Created by Agent Moose (www.revolution-x.org)
for(x=0;x<tab.length;x++){
if(tab[x].style.marginLeft == "10px" && tab[x].innerHTML.match(/action=(login|logout)/i)){
tab[x].id = "FloatingThingy";
tab[x].style.position = "fixed"
tab[x].style.opacity = 0.6;
tab[x].style.filter = "alpha(opacity=60)";
tab[x].onmouseover = function(){ this.style.opacity = 1; this.style.filter = "alpha(opacity=100)"; };
tab[x].onmouseout = function(){ this.style.opacity = 0.6; this.style.filter = "alpha(opacity=60)"; };
tab[x].style.top = document.documentElement.scrollTop;
document.write("<style>* html #FloatingThingy { left: expression( ( 20 + ( bloop = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); }; #FloatingThingy { position: fixed; };</style>");
};};
</script>
Simple code. Makes the Tabs (Home, Help, Search, ect.) float at the top of the page. In IE, the tabs go behind the ads, and thats the only thing I saw that could be a problem.
Enjoy