$(document).ready(function() {
	$("#content #feeds .about p").hide();
	$("#content #feeds .about h4").replaceWith('<h4><a href=\"#feeds\" rel=\"self\" title=\"Click for a potted explanation\">About feeds and feed readers</a></h4>');
	$("#content #feeds .about h4 a").click(show_feed_info);
});

function show_feed_info() {
	$("#content #feeds .about p").slideToggle();
	
	if ($("#content #feeds .about p").is(":visible")) {
		$("#subscribe_options").addClass("expanded");
	} else {
		$("#subscribe_options").removeClass();
	}
	
	return false;
}
