$(function(){
	$('.accordion a').click(function() {
		
			if ($(this).next().css("display") != 'block'){
				$(this).next().fadeIn('fast');
				$(this).addClass('active')
			} else {
				$(this).next().fadeOut('fast');
				$(this).removeClass('active')				
			}
							
		
		return false;
	}).next().hide();
	
	/*	$('.accordion a:first').addClass('active').next().show();*/
});