// Editing Instructions
// 1. Change '#flytande_hoger_ruta' to whatever the ID attribute of your DIV is
// 2. Change '600' 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 > 600 || self.pageYOffset > 600) {
            $('#flytande_hoger_ruta').css('position','fixed');
            $('#flytande_hoger_ruta').css('top','0');
        } else if (document.documentElement.scrollTop < 600 || self.pageYOffset < 600) {
            $('#flytande_hoger_ruta').css('position','absolute');
            $('#flytande_hoger_ruta').css('top','600px');
        }
    }
}
