// Editing Instructions
// 1. Change '#page_title' to whatever the ID attribute of your DIV is
// 2. Change '82' to whatever the height of your header is, if you have no header, set to 0

/********************************
*   (C) 2009 - Thiago Barbedo   *
*   - tbarbedo@gmail.com        *
*********************************/
window.onscroll = function()
{
    if( window.XMLHttpRequest ) {
        if (document.documentElement.scrollTop > 82 || self.pageYOffset > 82) {
            $('#page_title').css('position','fixed');
            $('#page_title').css('top','0');
        } else if (document.documentElement.scrollTop < 82 || self.pageYOffset < 82) {
            $('#page_title').css('position','absolute');
            $('#page_title').css('top','0px');
        }
    }
}
