	var old_link_text = "";
  	$(document).ready(function() {
		$('span.more_link a').click(function() {
			var divapproach = $(this).parents(".textcol:first");
			if (divapproach.html() == null) divapproach = $(this).parents("div.productdisplay");
			if (divapproach) {
				var divmore = divapproach.find("div.approach_more");
				var spanmore = divapproach.find("span.approach_more");
				var divh1 = divapproach.children("h1");
				var sub_images = divapproach.find("img.image_pillar_wide");
				if (($.trim(divmore.html()).length > 0 && divmore.is(":hidden")) ||
					(spanmore.html().length > 0 && spanmore.is(":hidden"))) {
					divmore.show();
					spanmore.show();
					old_link_text = $(this).html();
					$(this).html("Minimize &laquo;");
					$(this).parents("span.more_link").addClass("floatBottom");
				} else {
					divmore.hide();
					spanmore.hide();
					$(this).html(old_link_text);
					$(this).parents("span.more_link").removeClass("floatBottom");
				}
				$(this).blur();
			}
			return false;
		});
	});
