﻿/// <reference name="MicrosoftAjax.js"/>


Type.registerNamespace("BlueSites");

BlueSites.Image = function(element) {
    BlueSites.Image.initializeBase(this, [element]);
}

BlueSites.Image.prototype = {
    // Interface TUI.WebControls.ICircularListImage start
    get_positionIdentifier: function()
    {
        return this.get_Position();
    },
    get_thumbnailImageTitle: function()
    {
        return '';
    },
    get_thumbnailImageUrl: function()
    {
        return this.get_UrlThumbnail();
    },
    // Interface TUI.WebControls.ICircularListImage interface end
    get_UrlThumbnail: function()
    {
        return this._UrlThumbnail;
    },
    set_UrlThumbnail: function(value)
    {
        this._UrlThumbnail = value;
    },
    get_UrlLarge: function()
    {
        return this._UrlLarge;
    },
    set_UrlLarge: function(value)
    {
        this._UrlLarge = value;
    },
    get_Position: function()
    {
        return this._Position;
    },
    set_Position: function(value)
    {
        this._Position = value;
    }
}
BlueSites.Image.registerClass('BlueSites.Image', Sys.UI.Control, TUI.WebControls.ICircularListImage);

if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
