$(document).ready(function () {
    if ($("#pagesubheadarea .contentpane").length > 0) {
		if (($("body").attr('id') == "learning" || $("body").attr('id') == "resources") && $("body").hasClass("section")) {
			
		}
		else {
			$("#pagesubheadarea .contentpane").addClass('closed');
			$("#pagesubheadarea h2").eq(0).after('<div id="sectionhelp">Help</div>');
			$("#pagesubheadarea #sectionhelp").hover(
				function() { $(this).css('backgroundPosition','0px -32px'); },
				function() { $(this).css('backgroundPosition','0px 0px'); }
			).click(function() {
				if ($("#pagesubheadarea .contentpane").hasClass("closed")) {
					$("#pagesubheadarea .contentpane").slideDown().removeClass('closed');
					$(this).css('backgroundImage','url(/mandarin/templates/mandarin/images/helpclose.png)');
				}
				else {
					$("#pagesubheadarea .contentpane").slideUp().addClass('closed');
					$(this).css('backgroundImage','url(/mandarin/templates/mandarin/images/help.png)');				
				}
			});
		}
	}
});

