
		
jQuery(document).ready(function($){
	var $selected;
	$('.accordion div').hide();
	$('.accordion a:first-child').click(function(e2){ 
		var d = $('div:first', $(this)[0].parentNode);
		if ($selected!=null && d.css('display')=='block') 
		{
			d.hide('fast');
			$(d[0].parentNode).removeClass('on')
			$selected = null;
			return; 
		}
		if ($selected){ 
			$selected.hide('fast'); 
			$($selected[0].parentNode).removeClass('on'); 
		} 
		$selected=$('div:first', $(this)[0].parentNode).show('fast'); 
		$($(this)[0].parentNode).addClass('on');
	});
});

