$(document).ready(function()
{
	$('.faq-question').click(function(){
		var objA = $( '#a' + $(this).attr('id') );		// the related answer
		objA.toggle()
		
	}).hover(function()
	{
		$(this).css("cursor","pointer");
	});	
	
	$('.faq-answer').click(function(){
		$(this).toggle()
		
	}).hover(function()
	{
		$(this).css("cursor","pointer");
	});	
	
	
	$('.event-header').click(function(){
		var objA = $( '#e' + $(this).attr('id') );		// the related answer
		objA.toggle()
		
	}).hover(function()
	{
		$(this).css("cursor","pointer");
	});	
	
	$('.event-content').click(function(){
		$(this).toggle()
		
	}).hover(function()
	{
		$(this).css("cursor","pointer");
	});		
});
