
	jQuery(document).ready(function(){
		$(".accordion .accordionContent").hide();
		$('.accordion .head').click(function() {
			$(this).next().toggle('fast');
			$(this).toggleClass("headOpen"); 
			return false;
		}).next().hide();
	});
