﻿/**
*  see jquery 1.3.2
**/
$(document).ready(function () {
    $(window).bind("resize scroll", function () {
        var $apAlert = $("#backi");
        var $win = $(window);
        $apAlert.css("top", $win.scrollTop() + 10);
        $apAlert.css("right", $win.scrollLeft() + 10);
    });
});
