﻿/// <reference name="MicrosoftAjax.debug.js" />
/// <reference name="MicrosoftAjaxTimer.debug.js" />
/// <reference name="MicrosoftAjaxWebForms.debug.js" />

/// <reference path="jquery.intellisense.js"/>

/// <reference path="Kleenex.Core.js"/>

Kleenex.CardListing = function(clientId, addImageUrl, removeImageUrl)
{
    this.ClientID = clientId;
    this.AddImageUrl = addImageUrl;
    this.RemoveImageUrl = removeImageUrl;
    this.Selector = "#" + clientId;
    this.Initialize();
};
Kleenex.CardListing.prototype =
{
    Name : 'Kleenex.CardListing',
    __typeName : 'Kleenex.CardListing',
    __class : true,
    AttachEvents : function()
    {
        var __app = this;        
    }
};

// inherit from the core
Kleenex.Extend(Kleenex.CardListing, Kleenex.UserControl);
