﻿if (!window.Tiburon)
    window.Tiburon = {};
    
Tiburon.object = function(control, target, x, y)
{
    this.target = target;
//    this.target.cursor = "Hand";

    this.target.addEventListener("MouseEnter", Silverlight.createDelegate(this, this.handleMouseEnter));
	
    this.target["Canvas.Top"] = y;
    this.target["Canvas.Left"] = x;
}

Tiburon.object.prototype =
{
    handleMouseEnter: function(sender, eventArgs)
    {
//    sender.findName("").begin();
    }
}
