	function runMe()
	{
		// create fader
		var myFader1 = new DynFader();
		// add text
		myFader1.addText('Welcome to KCUP Online&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Grab a Cup of Coffee or &nbsp;&nbsp;&nbsp;');
		myFader1.addText('Grab a Cup of Tea.&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Lifestyles on the Oregon Coast&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Talk Programs - 24/7&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Dan and Shannon, LIVE local news talk, 6 - 8am...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('LIVE lifestyle talk, 8am - 9am...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Don Cohen\'s News & Commentary, 5pm - 6pm...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('The Ray Lucia Show...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('The Kim Komando Show...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('The Dave Ramsey Show...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Sean Hannity Tuned Into America...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('George Noory - Coast to Coast...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Tom Leykis - The Tasting Room...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('Doug Stephan\'s Good Day...&nbsp;&nbsp;&nbsp;');
		myFader1.addText('...and much more!&nbsp;&nbsp;&nbsp;');
		myFader1.addText('YOUR Lifestyle on the Oregon Coast&nbsp;&nbsp;&nbsp;');
		// initialize fader      
		myFader1.attachPlaceHolder("TheKCUPHeader");
		myFader1.setBackground('../images/banner.jpg');
		myFader1.setDirection(1);
		myFader1.setFont('Arial', 'bold', 'right');
		myFader1.setFontSize(11);
		myFader1.setTextColor('#000000');
		myFader1.setSpeed(2);
		myFader1.setPauseMidInterval(40);
		myFader1.setPauseTextInterval(30);
		myFader1.beginFade();
		// create fader
	}