<?

//format titles with 1 chr of each word parsed out

$edit_title = explode(" ", $title);

	foreach($edit_title as $key => $value ) {
	$first = $value{0};
	$formated_first = "<span class = 'title1'>$first</span>";
	$remainder = substr($value, 1);
	$formated_remainder = "<span class = 'title2'><strong>$remainder</strong></span>";
	$formated_title = "$formated_first$formated_remainder";
	echo "$formated_title ";
	}
	echo "<br /><hr style='color:grey; background-color:grey; height: 1px; width:250px;' /><br />
			$disp_author<br />";

?>