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

		// add text
		myFader.addText("Find out about our <A HREF='2009conference/'>2009 Conference - Growing up with an ASD</A> with Prof Digby Tantam, Ros Blackburn, Joshua Muggleton and others.");
		myFader.addText("Lost? Don't know where to start? Our <A HREF='siteguide.htm'>Site Guide</A> will provide you with the directions you need.");
		myFader.addText('New parents: <A HREF="happens.htm">click here</A> to read our article <A HREF="happens.htm">After diagnosis - what happens now?</A>');
		myFader.addText('We are a full branch of the National Autistic Society but we are not <A HREF="http://www.nas.org.uk">the NAS itself</A>. For all enquiries you should contact us using <A HREF="contact.htm">the form here</A>.');
		myFader.addText('Comments or problems regarding this site should be sent to the webmaster John Muggleton by completing the <A HREF="contact.htm">form</A>.');
		myFader.addText('Listen to some talks on our <a href="talks.htm">talks page</a>.');
		
		// initialize fader
		myFader.attachPlaceHolder("MainFader");
		myFader.setFont('Arial', 'normal', 'left');
		myFader.setFontSize('12');
		myFader.setDirection(1);
		myFader.setPauseMidInterval(100);
		myFader.setTextColor('#ffff73');
		myFader.beginFade();
	}
