/**
 * $Id: PictureBarCustomConfig.js 84386 2009-10-01 11:47:48Z k.reimer $
 * Copyright (C) 2008 IP Labs GmbH <http://www.iplabs.de/>
 * All rights reserved.
 * 
 * @fileoverview
 * Provides the PictureBarCustomConfig class.
 *
 * @author Thorsten Schueller (t.schueller@iplabs.de)
 * @version $Revision: 84386 $
 *
 */

var jade;
var PictureBarCustomConfig;

jade.require("PictureBarBaseConfig");



/**
 * Constructs a new picturebar custom configuration.
 *
 * @class
 * This class defines the picturebar custom configuration. Copy this class and 
 * overide the pictureBarBaseConfiguration paramters. 
 * 
 * @constructor
 */

PictureBarCustomConfig = function()
{    
    // Insert here your custom changes. e.g.:
    // this.viewSizeSliderGeometry = [15, 0, 87, 15];
};
jade.inherit(PictureBarCustomConfig, PictureBarBaseConfig);



