Type.registerNamespace("DL.UI");

// Constructor
DL.UI.SiteMapPathCaret = function(element,content,decor) {
    this._cssDown = "caret_down";
    this._cssHover = "caret_hover";
    this._cssRest = "caret_rest";  
    DL.UI.SiteMapPathCaret.initializeBase(this, [element,content,decor,this._cssDown,this._cssHover,this._cssRest]);    
}
DL.UI.SiteMapPathCaret.registerClass('DL.UI.SiteMapPathCaret', DL.UI.DropDownControl);

// Since this script is not loaded by System.Web.Handlers.ScriptResourceHandler
// invoke Sys.Application.notifyScriptLoaded to notify ScriptManager 
// that this is the end of the script.
if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
