/* IE fix to make for the lack of support for the CSS position: fixed; */
#footer {
    left : 0;
    top  : expression( ( 
            0 - footer.offsetHeight + 
            ( ignoreMe1 = document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + 
            ( ignoreMe2 = document.documentElement.scrollTop    ? document.documentElement.scrollTop    : document.body.scrollTop ) 
        ) + 'px' 
    );
}
