

$('h6.faq').click(function() {
	var b = $('h6.close span').html();
	$('h6.close').next().toggle("slow");
	$('h6.close').addClass('open');
	$('h6.close').find('img').attr('src','/gfx/faq.png');
	$('h6.close').removeClass('close');
	if(b != $(this).find('span').html()){
		$(this).next().toggle('slow');
		if($(this).attr('class').match('open')){
			$(this).removeClass('open');
			$(this).addClass('close');
			$(this).find('img').attr('src','/gfx/faq2.png');
		}else{
			$(this).addClass('open');
			$(this).removeClass('close');
			$(this).find('img').attr('src','/gfx/faq.png');
		}
	}
});

