function LoadIndicator(container)
{
    this.container = container;

    this.loadStart = function()
    {
        $(this.container).show(0);
    }

    this.loadEnd = function()
    {
        $(this.container).hide(0);
    }
}
