$(document).ready(function() {
	$("div[id=cms_section][class=hidden]").find("div[id=cms_section_content]").hide();
	$("div[id=cms_section][class=hidden]").find("div[id=cms_section_headline]").addClass("pointer");
	$("div[id=cms_section][class=hidden]").find("span[id=cms_section_headline_icon]").addClass("styles");
	$("div[id=cms_section][class=hidden]").find("a[class=cms_section]").css("cursor","pointer")
			
	$("div[id=cms_section][class=hidden]").find("div[id=cms_section_headline]").toggle(function() {
		$(this).parent().find("div[id=cms_section_content]").show();
		$(this).find("span[id=cms_section_headline_icon]").html("-");
	},function(){
		$(this).parent().find("div[id=cms_section_content]").hide();
		$(this).find("span[id=cms_section_headline_icon]").html("+");
	});
});
