function addOnloadEvent(fnc){
  if ( typeof window.addEventListener != "undefined" ) {
    window.addEventListener( "load", fnc, false );
  }
  else if ( typeof window.attachEvent != "undefined" ) {
    window.attachEvent( "onload", fnc );
  }
  else {
    if ( window.onload != null ) {
      var oldOnload = window.onload;
      window.onload = function ( e ) {
        oldOnload( e );
        window[fnc]();
      };
    }
    else
      window.onload = fnc;
  }
}
// JavaScript Document
var tWidth0='100%';                  // width (in pixels)
var tHeight0='25px';                  // height (in pixels)
var tcolour0='#FFF';               // background colour:
var moStop0=true;                     // pause on mouseover (true or false)
var fontfamily0 = 'Verdana, Arial, Helvetica, sans-serif'; // font for content
var tSpeed0=4;                        // scroll speed (1 = slow, 5 = fast)

// enter your ticker content here (use \/ and \' in place of / and ' respectively)
var blankit0='&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
var content0=blankit0+'<b><a href="/sizeup/Minimum_Standards_Minutes_07-29-10.pdf"><img src="../images/pdficon.gif" width="17" height="17" border="0" alt="Summary of Minimum Requirements, Meeting" />Summary of Minimum Requirements, Meeting</a>'+blankit0+'<a href="/sizeup/07.27.10_Fire Safety_Bill_Signing_RELEASE.pdf"><img src="../images/pdficon.gif" width="17" height="17" border="0" alt="Governor Quinn Signs Legislation to Improve Fire Safety throughout Illinois" />Governor Quinn Signs Legislation to Improve Fire Safety throughout Illinois</a>'+blankit0+'<a href="/news/trs.pdf"><img src="../images/pdficon.gif" width="17" height="17" border="0" alt="Sale of Assets by TRS" />Sale of Assets by TRS</a>'+blankit0+'<a href="/counseling/archive.php">Counseling for Fire Fighter Services ARCHIVES</a>'+blankit0+'<a href="/store/">2010 products now available in our IPFA store</a>'+blankit0+'New Laws Efective 1/1/2010 under <a href="/politics">Politics & Legislation</a>'+blankit0+'<a href="/sizeup/ifsiu-who.pdf"><img src="/images/pdficon.gif" width="17" height="17" border="0" alt="Who is the Illinois Fire Services Association" />Who is the Illinois Fire Services Association</a>'+blankit0+'</b>';

// Simple Marquee / Ticker Script
// copyright 3rd January 2006, Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the below code in this script (including this
// comment) is used without any alteration
var cps0=tSpeed0;
var aw0, mq0;
var fsz0 = parseInt(tHeight0) - 4;

function startticker0(){
	if (document.getElementById) {
		var tick0 = '<div style="position:relative;width:'+tWidth0+';height:'+tHeight0+';overflow:hidden;background-color:'+tcolour0+'"';
		if (moStop0) tick0 += ' onmouseover="cps0=0" onmouseout="cps0=tSpeed0"';
		tick0 +='><div id="mq0" style="position:absolute;left:0px;top:0px;font-family:'+fontfamily0+';font-size:'+fsz0+'px;white-space:nowrap;"><\/div><\/div>';
		document.getElementById('news').innerHTML = tick0;
		mq0 = document.getElementById("mq0");
		mq0.style.left=(parseInt(tWidth0)+10)+"px";
		mq0.innerHTML='<span id="tx0">'+content0+'<\/span>';
		aw0 = document.getElementById("tx0").offsetWidth;
		lefttime0=setInterval("scrollticker0()",50);
		}
	} 
	function scrollticker0(){
		mq0.style.left = (parseInt(mq0.style.left)>(-10 - aw0)) ?parseInt(mq0.style.left)-cps0+"px" : parseInt(tWidth0)+10+"px";
	}

	addOnloadEvent(startticker0);