<?

//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:500px;' /><br />
			<div style='text-align:left;'>$audio</div><br />
			$disp_author<br />
			$disp_small_or_full<br />
			<span class='author'>Music Arrangements are $level</span>";

?>