// JavaScript Document
/*Example message arrays for the two demo scrollers*/

var tickercontent=new Array()
<?
	$news = mysql_query("SELECT * from ccms_news order by id desc limit 10");
	$c = 0;
	while ($row = mysql_fetch_assoc($news)) {

		$title_start = preg_replace('/[^a-zA-Z0-9 *]/', '', $row[title]); 
		$title_seo = str_replace(' ', '-', $title_start);

echo "tickercontent[$c]='<DIV align=\"right\"><span class=\"date\"><img hspace=\"4\" vspace=\"2\" align=\"absmiddle\" src=\"rss.gif\"><a href=\"story-$row[id]-$title_seo.html\" class=\"date\">$row[title]...</a></span></DIV>';\n";

	$c++;
	}
?>