$(document).ready(function() {
	
	if ($(".tentpole #related a.action").size() > 0) {
		$("#related a.action").bind("click", function() {		
			$(this).hide();
			$("#related ul li.noshow").each(function(i) {    			
				$(this).slideDown();
			});
			return false;   		
		});
	}
	$("#read_more").unbind("click");
	$("#read_more").bind("click", function() {
		$(this).hide();
		$(".moretext").show();
		$(".detail_list").slideDown();
		return false;
	});
});
