// Netscape 3.0 compat. test (for javascriptimage swapping) compat = false; if( parseInt( navigator.appVersion ) >=3 ) { compat = true; } // cache images if( compat ) { service = new Image(162,26); service.src = "orange/service1.png"; servicehi = new Image(162, 26); servicehi.src = "orange/service2.png"; test = new Image(162,26); test.src = "orange/testimonials1.png"; testhi = new Image(162, 26); testhi.src = "orange/testimonials2.png"; awards = new Image(162,26); awards.src = "orange/awards1.png"; awardshi = new Image(162, 26); awardshi.src = "orange/awards2.png"; train = new Image(162,26); train.src = "orange/training1.png"; trainhi = new Image(162, 26); trainhi.src = "orange/training2.png"; employ = new Image(162,26); employ.src = "orange/employ1.png"; employhi = new Image(162, 26); employhi.src = "orange/employ2.png"; home = new Image(162,26); home.src = "orange/home1.png"; homehi = new Image(162, 26); homehi.src = "orange/home2.png"; } // swap images using cached images function glow(x, y) { if( compat ){ document.images[x].src=eval(y+'.src'); } } // SCRIPT FOR DROP-DOWN MENUS function goMenu() { var first = "http://www.servpro.com/" var page = document.menuform.nav.options[document.menuform.nav.selectedIndex].value ; if (page == "0") { window.focus() } if (page == "1") { window.open('http://www.servpro.com/career_path/','new','width=640,height=420,top=50,left=75,toolbars=0,resizable=0,scrollbars=1') } if (page != "1" && page != "0") { location.href = first + page } } // SCRIPT FOR TIME AND DATE var day=""; var month=""; var ampm=""; var ampmhour=""; var myweekday=""; var year=""; mydate = new Date(); myday = mydate.getDay(); mymonth = mydate.getMonth(); myweekday= mydate.getDate(); weekday= myweekday; myyear= mydate.getYear(); year = myyear; myhours = mydate.getHours(); ampmhour = (myhours > 12) ? myhours - 12 : myhours; ampm = (myhours >= 12) ? ' PM' : ' AM'; mytime = mydate.getMinutes(); myminutes = ((mytime < 10) ? ':0' : ':') + mytime; if(myday == 0) day = " Sunday, "; else if(myday == 1) day = " Monday, "; else if(myday == 2) day = " Tuesday, "; else if(myday == 3) day = " Wednesday, "; else if(myday == 4) day = " Thurday, "; else if(myday == 5) day = " Friday, "; else if(myday == 6) day = " Saturday, "; if(mymonth == 0) { month = "January ";} else if(mymonth ==1) month = "February "; else if(mymonth ==2) month = "March "; else if(mymonth ==3) month = "April "; else if(mymonth ==4) month = "May "; else if(mymonth ==5) month = "June "; else if(mymonth ==6) month = "July "; else if(mymonth ==7) month = "August "; else if(mymonth ==8) month = "September "; else if(mymonth ==9) month = "October "; else if(mymonth ==10) month = "November "; else if(mymonth ==11) month = "December ";