<!--
		var marqueewidth="149px";
		var marqueeheight="100px";
		var marqueespeed=2;
		var pauseit=1;
		
		var marqueecontent='<center>';

		
                // ***********************************************************************
                // Each line below will be a seperate scroll article
                // ***********************************************************************
                
	
//      marqueecontent+='<font color=yellow>The TJ Football Boosters would like to thank the Coaches & Players for a great Season!!!</font><br><br><br>';
//      marqueecontent+='<font color=yellow>TJ Football Boosters would like to extend a </font><br><font color=white>Special "Thank You" to Mr. Ken Eber for his Dedication and Hard Work during the 2008 Football Season</font><br><br><br>';
//      marqueecontent+='<font color=yellow>Sun Jan 25th</font><br><font color=white>TJ Football Banquet @ 6PM at the Bradley House</font><br><br><br>';
//      marqueecontent+='<font color=yellow>Thurs April 9th</font><br><font color=white>Championship Gear Pickup 4PM - 8PM @ Thomas Jefferson HS Cafeteria</font><br><br><br>';
//      marqueecontent+='<font color=yellow>Tues April 14th</font><br><font color=white>Championship Gear Pickup 3PM - 4:30PM @ Thomas Jefferson HS Cafeteria</font><br><br><br>';
//      marqueecontent+='<font color=yellow>Wed May 14th</font><br><font color=white>Ring Ceremony @ 7:30PM @ TJHS Cafeteria</font><br><br><br>';                // ***********************************************************************		
//      marqueecontent+='<font color=yellow>Sun May 17th</font><br><font color=white>Cystic Fibrosis Walk (South Park)</font><br><br><br>';                // ***********************************************************************		
//      marqueecontent+='<font color=yellow>Friday August 8th</font><br><font color=white>5th Annual TJ Jaguar Football Golf Outing @ South Park Golf Course</font><br><br><br>';                // ***********************************************************************		
//      marqueecontent+='<font color=yellow>Sun August 16th</font><br><font color=white>Mandatory Team Meeting @ 7:30PM @ Jefferson Elementary Cafeteria</font><br><br><br>';                // ***********************************************************************
//      marqueecontent+='<font color=yellow>Mon August 17th</font><br><font color=white>2009 Football Camp Begins</font><br><br><br>';                // ***********************************************************************
        marqueecontent+='<font color=yellow>Thurs Sept 9th</font><br><font color=white>TJ Freshmen vs. Franklin Regional @ 4:00PM @ Franklin Regional High School Stadium</font><br><br><br>';
        marqueecontent+='<font color=yellow>Fri Sept 10th</font><br><font color=white>TJ Varsity vs. South Park @ 7:30PM @ South Park HS Stadium</font><br><br><br>';               // ***********************************************************************
        marqueecontent+='<font color=yellow>Sat Sept 11th</font><br><font color=white>TJ Junior Varsity vs. South Park @ 10:00AM @ TJ High School Stadium</font><br><br><br>';
        
//      marqueecontent+='<font color=yellow>Sat Oct 24th</font><br><font color=white>TJ Junior Varsity vs. Belle Vernon @ 10:00AM @ Belle Vernon High School Stadium</font><br><br><br>';  
     
 marqueecontent+='</center>';
		
		marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1)
		var copyspeed=marqueespeed;
		var pausespeed=(pauseit==0)? copyspeed: 0;
		var ismac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
		var iedom=document.all||document.getElementById;
		var actualheight=0;
		var cross_marquee, ns_marquee;
		
		function populate() {
			if (iedom) {
				cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee;
				cross_marquee.style.top=parseInt(marqueeheight)+8+"px";
				cross_marquee.innerHTML=marqueecontent;
				actualheight=cross_marquee.offsetHeight;
			}
			else if (document.layers) {
				ns_marquee=document.ns_marquee.document.ns_marquee2;
				ns_marquee.top=parseInt(marqueeheight)+8;
				ns_marquee.document.write(marqueecontent);
				ns_marquee.document.close();
				actualheight=ns_marquee.document.height;
			}
						
			lefttime=setInterval("scrollmarquee()",75);
		}

		if (iedom||document.layers) {
			with (document) {
				if (iedom) {
					write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">');
					write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">');
					write('</div></div>');
				}
				else if (document.layers) {
					write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">');
					write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>');
					write('</ilayer>');
				}
			}
		}
		
		function scrollmarquee() {
			if (iedom) {
				if (actualheight < 1) {
					actualheight=cross_marquee.offsetHeight;
				}
				if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
					cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px";
				else
					cross_marquee.style.top=parseInt(marqueeheight)+8+"px";
			}
			else if (document.layers) {
				if (actualheight < 1) {
					actualheight=ns_marquee.document.height;
				}
				if (ns_marquee.top>(actualheight*(-1)+8))
					ns_marquee.top-=copyspeed;
				else
					ns_marquee.top=parseInt(marqueeheight)+8;
			}
		}
	//-->