﻿/// <reference path="jquery-1.3.2-vsdoc2.js" />

$(function() {
    var al = $('#ajaxLoader');
    $(document).mousemove(function(ev) {                
        var p = { top: ev.pageY, left: ev.pageX };
        al.css(p);
    }).ajaxStart(function() {
        al.show();
    }).ajaxStop(function() {
        al.hide();        
    });

//    var space = $('#mainContent').height() - $('#sideContent').height();
//    if (space > 0)
//        $('#sideBanners').load('/HfAjax/GetSideBanners', { height: space });

});

