
  $(document).ready(function(){
	$(".acordion-content").hide();
	$('<img src="/images/arrow-down.png" class="acordion-arrow" />').insertAfter('a h1'); 				   
	$("a h1").click(function(){
		if($(this).is(".active")) {
         $(this).toggleClass("active");
		 $('.acordion-arrow.active').attr('src','/images/arrow-down.png'); // change the image src of the current ACTIVE image to have an INACTIVE state.
         $(this).parent().next(".acordion-content").slideToggle();
         return false;
		} else {
			$(".acordion-content:visible").slideUp("slow"); // close all visible divs with the class of .content
			$("h1.active").removeClass("active");  // remove the class active from all h1's with the class of .active
			$(this).toggleClass("active");
			$('.acordion-arrow.active').attr('src','/images/arrow-down.png'); // change the image src of the current ACTIVE image to have an INACTIVE state.
			$(".acordion-arrow").addClass('active');
			$(this).siblings('.acordion-arrow.active').attr('src','/images/arrow-up.png'); // change the image src of the new active image to have an active state.
			$(this).parent().next(".acordion-content").slideToggle();
			return false;
		}
	});
});