﻿GoodNites.Twinkle = function(serverVars) {
    this.ServerVars = serverVars;
    this.Initialize();
};
GoodNites.Twinkle.prototype = {
    Initialize: function() {
        $(serverVars.twinkleSelector).flash({
            swf: '/na/Swf/StarryNight.swf',
            width: '100%',
            height: 625,
            hasVersion: 8,
            params: {
                wmode: 'transparent'
            }
        });
    }
};
GoodNites.Extend(GoodNites.Twinkle, GoodNites.Core);
