/* author: Robert M. Howell Qual-Tek, Inc. qualtek.com */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 11/10/2008 */
<!--Hide script from old browsers
//This script will scroll a message across the status bar
	var d=new Date();
	var month=d.getMonth();
	var day=d.getDate();
	var Sep11=    "                  We at chicagofirestore.com salute all of the brave first responders on this anniversary of September 11, 2001          "
	var OLoA =    "                  The Chicago Fire Store remembers the fire at Our Lady of Angels School in Chicago, December 1st, 1958. Our thoughts and prayers go out to the family and friends of the 92 victims.                "
	var stndrdMsg="                  Take a look at what is new on chicagofirestore.com!!!                   You are sure to find something great for all of the fire fighters on your list!          "
	if (month+1==9&&day==11)  {
	myMsg =Sep11
	}
	else if (month==11&day==1){
	myMsg =OLoA
			}
	else {
	myMsg =stndrdMsg
	}

	i=0

	function scrollMsg() {
	 window.status=myMsg.substring(i,myMsg.length) + myMsg.substring(0,i-1)

	if (i < myMsg.length) {
	 i++
	}
	else {
	  i=0
	}
	setTimeout("scrollMsg()",200)
	}
	
//End hiding script from old browsers -->