﻿Namespace.register("How2go.Mouse");
How2go.Mouse=
{
    Cursor:function()
    {
        if (!How2go.IE)
        {
            this.hand='pointer';
            this.measure='default';
            this.index='default';
            this.poi='default';
            this.zoomin='default';
            this.wait='wait';
            this.center='pointer';
            this.move='move';
            this.zoomout='default';
            this.draw='default';
        }
        else
        {
            this.hand='url(\''+How2go.Path+'/images/cursor/Hand.cur\')';
            this.measure='url(\''+How2go.Path+'/images/cursor/measure.cur\')';
            this.index='url(\''+How2go.Path+'/images/cursor/default.cur\')';
            this.poi='url(\''+How2go.Path+'/images/cursor/poi.cur\')';
            this.zoomin='url(\''+How2go.Path+'/images/cursor/zoomin.cur\')';
            this.wait='url(\''+How2go.Path+'/images/cursor/wait.cur\')';
            this.center='url(\''+How2go.Path+'/images/cursor/Center.cur\')';
            this.move='url(\''+How2go.Path+'/images/cursor/Move.cur\')';
            this.zoomout='url(\''+How2go.Path+'/images/cursor/zoomout.cur\')';
            this.draw='default';
        }
        //this.Map.style.cursor='url(\''+src+'\')';
    }
}