﻿///////////////////////////////////////////////////////////////////////////////////
// az.Web.SlideShow
///////////////////////////////////////////////////////////////////////////////////

// Register namespace.
$s.RegisterNamespace("az.Web");

// Define constructor.
az.Web.SlideShow = function (elementID, imageUrls, options) {
    // Call base constructor.
    az.Web.SlideShow.Base(this, [elementID, imageUrls, options]);
};
// Define prototype.
az.Web.SlideShow.prototype = {
    
    Play: function() {
        az.Web.SlideShow.CallBaseMethod(this, 'Play');

        $('#play_pause_' + this._elementID).toggleClass('playing', true);
    },

    Stop: function() {
        az.Web.SlideShow.CallBaseMethod(this, 'Stop');

        $('#play_pause_' + this._elementID).toggleClass('playing', false);
    }
    
}

az.Web.SlideShow.RegisterClass("az.Web.SlideShow", sandermarks.UI.Controls.SlideShow);
