/**
* @author	André Dietisheim (dietisheim@sphere.ch)
* @version 1.0, 2005-05-07 (created on 2005-05-07)
* Copyright (c) 2001-2005 André Dietisheim
*/

function Css2Xlayer( sParent, xlayerParent, x, y, offsetX, offsetY, w, h,  iClipTop, iClipRight, iClipBottom, iClipLeft, iZindex, bVisibility, fading, events, src, caption )
{
	this.Xlayer( sParent, xlayerParent, x, y, offsetX, offsetY, w, h,  iClipTop, iClipRight, iClipBottom, iClipLeft, iZindex, bVisibility, "transparent", fading, events, src );
	this.caption = caption;
}

Css2Xlayer.prototype = new Xlayer;
Css2Xlayer.prototype.Xlayer = Xlayer;

Css2Xlayer.prototype.getCaption = function()
{
	return this.caption.toString();
}
