// JavaScript Document
function News()
{
	daysInn_news = Array();
	daysInn_news[0] = 'DaysInn is happy to announce the launch of the website';
	daysInn_news[1] = 'DaysInn is happy to announce the launch of the website';
	document.write('<marquee onmouseover=stop() onmouseout=start()>');
	for (i=0;i<daysInn_news.length;i++)
	{
		document.write(daysInn_news[i]+' - ');
	}
	document.write('</marquee>');
}