var maintvLightbox, maintvlb;

maintvLightbox = function ()
{
	this.show = function ()
	{
		var c = arguments && arguments[0] ? arguments[0]:"";
		$('descriptionContainer').update(c);
		$('descriptionBox').show();
	};
	
	this.hide = function ()
	{
		$('descriptionContainer').update('');
		$('descriptionBox').hide();
	};
};

maintvlb = new maintvLightbox();
