$(document).ready(function(){
	$(".content").hide();
	$("a div").click(function(){
      $(this).find("span.more").html("<span class='u'>Collapse</span>&nbsp;<span class='expand-collapse'><img class='collapse' src='images/landing/spaceball.gif' alt='Collapse'/></span></span>");
      if($(this).is(".active")) {
      $(this).find("span.more").html("<span class='u'>Read More</span>&nbsp;<span class='expand-collapse'><img class='read-more' src='images/landing/spaceball.gif' alt='Read More'/></span></span>");
         $(this).toggleClass("active");
         $(this).parent().next(".content").slideToggle();
         return false;
		} else {
			$(".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");
			$(this).parent().next(".content").slideToggle();
			return false;
		}
	});
});
