$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$('.content-GA').hide(); 
	$('.content-FD').hide();
	$('.content-Test').hide();

	$('a.trigger-GA').click(function(){
		var id = $(this).attr('id');
		$('#content-GA' + id).show('slow');
		return false;
	});
	
	$('a.close-GA').click(function(){
		var id = $(this).attr('id');
		$('#content-GA' + id).hide('slow');
		return false;
	});
	
	$('a.trigger-FD').click(function(){
		var id = $(this).attr('id');
		$('#content-FD' + id).show('slow');
		return false;
	});
	
	$('a.close-FD').click(function(){
		var id = $(this).attr('id');
		$('#content-FD' + id).hide('slow');
		return false;
	});
	
	$('a.trigger-Test').click(function(){
		var id = $(this).attr('id');
		$('#content-Test' + id).show('slow');
		return false;
	});
	
	$('a.close-Test').click(function(){
		var id = $(this).attr('id');
		$('#content-Test' + id).hide('slow');
		return false;
	});
});