(function($){
$(document).ready(function(){
	
	/*myfanflashes and twitter accordion*/	
	$('div.answer').css('display','none');
	$('span.header').click(function(){
		var opened = $(this).parent().find('div.answer').is(':visible');
		if(!opened){
			var anotherOpened = $(this).closest('#faq').find('div.answer:visible').slideToggle();
			}
		$(this).parent().find('div.answer').stop(true,true).slideToggle();
		})//end flash-head click	
		
	});//end ready
	})(jQuery);
