﻿// Editing Instructions
// 1. Change '#mentool-right-sidebar' to whatever the ID attribute of your DIV is
// 2. Change '175' to whatever the height of your header is, if you have no header, set to 0
/********************************
*   (C) 2009 - Thiago Barbedo   *
*   - tbarbedo@gmail.com        *
*********************************/
jQuery(function()
{
window.onscroll = function()
{
    if( window.XMLHttpRequest ) {
        if (document.documentElement.scrollTop > 178 || self.pageYOffset > 178) {
            jQuery('#mentool-right-sidebar').css('position','fixed');
            jQuery('#mentool-right-sidebar').css('top','5px');
        } else if (document.documentElement.scrollTop < 178 || self.pageYOffset < 178) {
            jQuery('#mentool-right-sidebar').css('position','absolute');
            jQuery('#mentool-right-sidebar').css('top','178px');
        }
    }
}
});
