function LazBox()
{    
	this.lazboxBackground 	= $('<div id="lazbox_background" />');
	this.lazboxContainer	= $('<div id="lazbox_container" />');
	
	this.lazboxCloseButton	= $('<div id="lazbox_close_button" />');
	this.lazboxCloseButton	= $('<div id="lazbox_close_button" title="X"/>');
	this.lazboxCloseButton.click(function() {
		window.oLazBox.hideLazBox();
    });
	
	this.lazboxContent = $('<div id="lazbox_content" class="lazbox_content scroll-pane"/>');
	this.lazboxContent.css('width', '750px');
	this.lazboxContent.css('height', '350px');
	this.lazboxContent.css('position', 'absolute');
	this.lazboxContent.css('top', '100px');
	this.lazboxContent.css('left', '65px');
	this.lazboxContent.css('overflow', 'hidden');
	this.lazboxContent.css('background-color', '#000');
	
	this.lazboxContainer.append(this.lazboxCloseButton);
	this.lazboxContainer.append(this.lazboxContent);
	this.lazboxBackground.append(this.lazboxContainer);
	this.lazboxBackground.hide();
	if ($('#lazbox_background').length == 0)
	{
		$('body').append(this.lazboxBackground);
	}
	
	this.showLazBox = function() {
		this.lazboxBackground.show();
    };
	
	this.hideLazBox = function() {
		if (window.mainplayer === "removed")
		{
			// Player main 2:
			AudioPlayer.setup("audio-player/player.swf", {
				autostart: 'no',
				loop: "yes",
				width: 80,
				initialvolume: 35,
				transparentpagebg: "yes",
				left: "000000",
				lefticon: "FFFFFF" 
			});
			
			var player = $('<div id="audioplayer_1" />');
			$("#main").append(player);
			AudioPlayer.embed("audioplayer_1", {soundFile: ""+window.websitePath+"/music/reproach.mp3"});
			
			window.mainplayer = "not_removed";
		}
		$('#lazbox_background').remove();
    };
}
