http://cyberslug.net allow a summary in the main blog with expanded content when viewing a single post add to your template right before add tag on a line by itself in the text of the post (only once) ******************************************/ function belowthefold () { global $postings, $currentid; $foldmark = ""; $sep = "
"; $x = $postings[$currentid]['message_html']; $folded = ereg($foldmark, $x); if($folded) { if ((isset($_GET['id'])) && ($postings[$currentid]['comment_on'] == 1)) { $x = str_replace($foldmark, $sep, $x); } else { $x = substr($x,0,strpos($x, $foldmark)) . "

\n

» Read the rest of this post

"; } $postings[$currentid]['message_html'] = $x; } return ""; } ?>