var OverlayEditorial = function (id) {
	this.overlay = new Overlay(id, {
		close: true,
		height:"500px",
		//width: "500px",
		zIndex: 100
	});
	
	this.overlay.showEffect = { on: "mouseover",
			delay: 1
	};
	
	this.overlay.hideEffect = { on: "mouseout",
				delay: 3
	};
	
	this.overlay.positionOffset = { x: 0, y: 0 };
	
	this.registerTransitions = function (anchor, bd) {
		this.overlay.registerTransitions(anchor, { header: "", body: bd, footer: "" }, this.overlay.YUIoverlay.id);
	};
}