/**
*	Copyright 2010, Thomas Klokosch <thomas.klokosch@me.com>
*/
$(document).ready(function(){
	
	$(".t3faq-group a").click(function(){
		if($(this).next().is(':hidden')){
			$(this).next().show();
		}else {
			$(this).next().hide();			
		}
		return false;
	});
	
});
