jQuery(document).ready(function() {
	jQuery(".animated_collapse_show").click(function() {
		jQuery(this).parent().find(".animated_collapse_hide").slideToggle("slow");
		if (jQuery(this).parent().css("background-image").indexOf("down_arrow") != -1) {
			jQuery(this).parent().css("background", "url(/presentation/bettertheworld/en-us/images/list_arrow.gif) no-repeat 0 5px");
		}
		else if (jQuery(this).parent().css("background-image").indexOf("list_arrow") != -1) {
			jQuery(this).parent().css("background", "url(/presentation/bettertheworld/en-us/images/down_arrow.gif) no-repeat 0 5px");
		}
		else {}
	});
})