/**
	This is the Breaking News System.
	*	~by Levon. O.

	Simple use:
	1. Simply add your breaking news in the "BREAKINGNEWS" variable. By adding a "+" sign before you start typing or pasting your news. (or else the system will break!)
	2. Make sure you separate your news with others' with a "dot" after your news.
	3. If you have multiple news, add a "dot" after end of each quote you put.
	4. Do NOT touch the "start" and the "end" commands.
	5. Also, the newest breaking news goes FIRST!
	6. The news that have been up for about a week will be DELETED.
	
	EXAMPLE:
	start
	+	"news3"
	+	dot
	+	"news 2"
	+	dot
	+	"news 1"
	+	end
**/
function BreakingNews(){
var dot=" &#8226; ";
var start="&#8727; ";
var end=" &#8727;";
var BREAKINGNEWS=
([
	start
        + "Welcome to tornado-times.com, Hoover's Tornado Times, Online."
        + end
]);
document.write(BREAKINGNEWS);
return "";
}
