// JavaScript Document

BBI = {};

BBI.Core = 
{
	BBNC:
	{
		_version: 1.1,
		_updated: '04/17/2008 10:07:07 AM',

		isV5: !!window.Sys,
		isV4: !!(window.BBProcMsg && !window.Sys),
		isEditView: !!window.location.href.match('edit='),
		hasPRM: !this.isV5
	}
};

BBI.Client =
{
	fixEventRegistration: function()
	{

		if (BBI.Core.BBNC.isEditView) {
			$('#JS-fixEventRegistration').append('Custom Javascript: Custom Event Registration');
		}
		// relabel payment header
		$('span[id$=_lblPriceHeader]').text("Yes, I'd like to participate!");
		$('span[id$=_lblPayHeader]').text('Confirmation');
		$('.EventSectionHeader').css('visibility','visible');
	}
}

				
