// BINDERTRITTENWEIN variables configuration

var BTWinitVariables = Class.create();	
	BTWinitVariables.prototype = {
	//
	//	Setup Variables
	//
	initialize: function() {
		// lightwindow
		// flash version
		this.globalMajorFlashVersion = '8';
		this.globalMinorFlashVersion = '39';
		// border for window (add. setting within CSS)
		this.lwCushion = 10;
		// loading
		this.lwLoadingGrafic = 'images/loading.gif';
		this.lwLoadingText = 'Laden';
		this.lwLoadingCancelText = 'Abbrechen';
		// background overlay (PNG only for MAC FF)
		this.lwBGPNG = 'images/black-70.png';
		this.lwOverLayColor = '#000000';
		// default size of Flash window
		this.lwMediaHeight = '300';
		this.lwMediaWidth = '320';
 	}
};
var btwVarInit = new BTWinitVariables();

