﻿function Gallery(id) {
    this.id = id;
    this.type = 1;
    this.name = "";
    this.description = "";
    this.stripOnOff = 1;
    this.slideOnOff = 0;
    this.slideInterval = 10000;
    this.transSpeed = 1000;
    this.transType = "Normal";
    this.imageUrls = new Array();
    this.thumbUrls = new Array();
    this.imageTxts = new Array();
    this.imageLnks = new Array();
    this.getData = function() {

    }
}
