function showHideEvent(divId)
{
	jQuery('div.evtContainer').not(':hidden').fadeOut('def', function(){ jQuery('#' + divId).fadeIn('def'); });
}

jQuery(document).ready(function()
{
	jQuery('.heading:first').hover(function()
	{
		jQuery(this).addClass('headingHover');
	}, function()
	{
		jQuery(this).removeClass('headingHover');
	}).click(function()
	{
		showHideEvent('initialEvt');
	});
	
	jQuery('.evtBtn').each(function()
	{
		var evtDivId = jQuery(this).attr('id').replace('Btn', 'Evt');
		
		jQuery(this).hover(function()
		{
			jQuery(this).addClass('evtBtnHover');
		}, function()
		{
			jQuery(this).removeClass('evtBtnHover');
		}).click(function()
		{
			showHideEvent(evtDivId);
		});
	});
});