// JavaScript Document
	function runMe()
	{
		// create fader
		var myFader = new DynFader();

		// add text, just add additional lines for more text.
	//	myFader.addText('<b>Here is the <a href="news.html">latest news</a> <br>from the			
		//myFader.addText('Michigan GAR Records now online!<br><a href = "/gar/data.html">Click here for more information</a>');

		//myFader.addText('The 2010 Department Encampment<br>Saturday, April 24, 2010<br><a href="/encampment.html">More information here...</a>');	
		myFader.addText('The Dept. of Michigan was awarded the<br>Augustus P. Davis / Conrad Linder Award</br>at the National Encampment for the<br>greatest numerical increase in membership!');	
		myFader.addText('<a href="/hq/past_orders.php">Department Orders #2 issued Aug. 15, 2010</a>');		

       //	myFader.addText('Graves Registration Meeting<br>Michigan Historical Center<br>Sept. 12 2009, 1:00 PM');
		myFader.addText('The JUNE edition of <i><a href="/messenger/V19_N1.pdf">Michigan&#8217;s Messenger</a></i> is now available!');		

		//myFader.addText('Remembrance Day<br>Gettysburg, PA<br>November 18, 2006');
		myFader.addText('The Deadline for submissions<br>to the next Michigan Messenger <br> is Sept. 1, 2010');
		
		myFader.addText('Submit &quot;scroller&quot; updates to the<br><a href="mailto:suvcwmi@gmail.com">Department Signals Officer</a>');
		

		// initialize fader
		myFader.attachPlaceHolder("news"); //The same as your placeholder
		myFader.setFont('Verdana', '', 'center'); //Set the scroller font
		myFader.setTextColor('#000066'); //Set the text color
		myFader.setFontSize(10);
		myFader.setPauseMidInterval(50)
		myFader.setPauseTextInterval(10)
		myFader.setDirection(1)
		myFader.setSpeed(-1)
		myFader.beginFade();
	}