window.onload = function()
{
    if( window.XMLHttpRequest ) {
            $('#stickydiv').css('position','fixed');
            $('#stickydiv').css('top','150px');
    }
}
window.onscroll = function()
{
    if( window.XMLHttpRequest ) {
            $('#stickydiv').css('position','fixed');
            $('#stickydiv').css('top','150px');
    }
}
