function LyteBox() {
/*** Start Global Configuration ***/
	this.theme = "gold";	// themes: grey (default), red, green, blue, gold
	this.hideFlash = true;		// controls whether or not Flash objects should be hidden
	this.outerBorder = true;		// controls whether to show the outer grey (or theme) border
	this.resizeSpeed = 5;		// controls the speed of the image resizing (1=slowest and 10=fastest)
	this.maxOpacity = 80;		// higher opacity = darker overlay, lower opacity = lighter overlay
	this.navType = 2;		// 1 = "Prev/Next" buttons on top left and left (default), 2 = "<< prev | next >>" links next to image number
	this.autoResize = true;		// controls whether or not images should be resized if larger than the browser window dimensions
	this.doAnimations = true;		// controls whether or not "animate" Lytebox, i.e. resize transition between images, fade in/out effects, etc.
	this.borderSize = 12;		// if you adjust the padding in the CSS, you will need to update this variable -- otherwise, leave this alone...
/*** End Global Configuration ***/

/*** Configure Slideshow Options ***/
	this.slideInterval = 4000;		// änderung Wert (Millisekunden) zur Zunahme/zur Abnahme die Zeit zwischen "Dias" (10000 = 10 Sekunden)
	this.showNavigation = true;		// true to display Next/Prev buttons/text during slideshow, false to hide
	this.showClose = true;		// true to display the Close button, false to hide
	this.showDetails = false;		// true to display image details (caption, count), false to hide
	this.showPlayPause = true;		// true to display pause/play buttons next to close button, false to hide
	this.autoEnd = true;		// true to automatically close Lytebox after the last image is reached, false to keep open
	this.pauseOnNextClick = false;	// true to pause the slideshow when the "Next" button is clicked
	this.pauseOnPrevClick = true;		// true to pause the slideshow when the "Prev" button is clicked
/*** Configure Slideshow Options ***/

	if(this.resizeSpeed > 10) { this.resizeSpeed = 10; }
	if(this.resizeSpeed < 1) { resizeSpeed = 1; }
	this.resizeDuration = (11 - this.resizeSpeed) * 0.15;
	this.resizeWTimerArray = new Array();
	this.resizeWTimerCount = 0;
	this.resizeHTimerArray = new Array();
	this.resizeHTimerCount = 0;
	this.showContentTimerArray= new Array();
	this.showContentTimerCount= 0;
	this.overlayTimerArray = new Array();
	this.overlayTimerCount = 0;
	this.imageTimerArray = new Array();
	this.imageTimerCount = 0;
	this.timerIDArray = new Array();
	this.timerIDCount = 0;
	this.slideshowIDArray = new Array();
	this.slideshowIDCount = 0;
	this.imageArray	= new Array();
	this.activeImage = null;
	this.slideArray	= new Array();
	this.activeSlide = null;
	this.frameArray	= new Array();
	this.activeFrame = null;
	this.checkFrame();
	this.isSlideshow = false;
	this.isLyteframe = false;
	/*@cc_on
		/*@if (@_jscript)
			this.ie = (document.all && !window.opera) ? true : false;
		/*@else @*/
			this.ie = false;
		/*@end
	@*/
	this.ie7 = (this.ie && window.XMLHttpRequest);
	if(navigator.userAgent.indexOf('MSIE 8')>0){
	      this.ie = false;
	      this.ie7 = false;
	}
	this.initialize();
}
