/* This script and many more are available free online at The JavaScript Source :: http://javascript.internet.com Created by: Mike Hudson :: http://www.afrozeus.com */ //extra line breaks are necessary to keep the page from jumping due to contrasting line numbers in each quote. function setupFadeLinks() { arrFadeLinks[0] = "http://potomacindexing.com"; arrFadeTitles[0] = "

"You are always uppermost in my mind when I need indexing. You do such a great job with such professionalism. Thanks."


"; arrFadeLinks[1] = "http://potomacindexing.com"; arrFadeTitles[1] = "

"I appreciate how much thought you're putting into the organization of the indexes. I feel comfortable leaving that in your hands."


"; arrFadeLinks[2] = "http://potomacindexing.com"; arrFadeTitles[2] = "

"You did a fantastic job; came in on time, manuscript very readable; cross references lead somewhere; and thorough."


"; arrFadeLinks[3] = "http://potomacindexing.com"; arrFadeTitles[3] = "

"Thank you for your hard work...effective and efficient...and for the FAST turnaround. It's greatly appreciated."


"; arrFadeLinks[4] = "http://potomacindexing.com"; arrFadeTitles[4]="

"I'm lucky to get you... I love your work!"



"; arrFadeLinks[5] = "http://potomacindexing.com"; arrFadeTitles[5]="

"Thanks SO much for getting these indexes finished--and ahead of schedule, too!"



"; arrFadeLinks[6] = "http://potomacindexing.com"; arrFadeTitles[6]="

"Your customer service is incredible!...You are a miracle worker."



"; arrFadeLinks[7] = "http://potomacindexing.com"; arrFadeTitles[7]="

"I appreciate how much thought you're putting into the organization of all these indexes. I feel comfortable leaving that in your hands."


"; arrFadeLinks[8] = "http://potomacindexing.com"; arrFadeTitles[8]="

"Indexes are great--nice and clean. Thanks very much for your work on the project!"



"; arrFadeLinks[9] = "http://potomacindexing.com"; arrFadeTitles[9]="

"Wow!!! - and I do mean wow and all the exclamation marks!!! Congratulations to the Indexer. Amazing. Did I really write all that? Yup, I did, but it is amazing to see it indexed."

"; arrFadeLinks[10] = "http://potomacindexing.com"; arrFadeTitles[10]="

"You did a fantastic job; came in on time, manuscript very readable; cross references lead somewhere; and thorough."


"; arrFadeLinks[11] = "http://potomacindexing.com"; arrFadeTitles[11]="

"Thank you for your hard work...effective and efficient...and for the FAST turnaround. It's greatly appreciated."


"; arrFadeLinks[12] = "http://potomacindexing.com"; arrFadeTitles[12]="

"The index fits beautifully! You’re the best."



"; arrFadeLinks[13] = "http://potomacindexing.com"; arrFadeTitles[13]="

"Working with PI is great! They didn't hesitate to negotiate a higher fee from the client when I suggested it was lower than usual for that type of material."


"; arrFadeLinks[14] = "http://potomacindexing.com"; arrFadeTitles[14]="

"I appreciate being part of Potomac. It means a lot that my peers consider my work more than OK."


"; arrFadeLinks[15] = "http://potomacindexing.com"; arrFadeTitles[15]="

"I greatly appreciate the quick turnaround on this project. Thank you for the good work and I look forward to future projects."


"; arrFadeLinks[16] = "http://potomacindexing.com"; arrFadeTitles[16]="

"The index is amazing!"



"; arrFadeLinks[17] = "http://potomacindexing.com"; arrFadeTitles[17]="

"The index provides excellent research assistance\; for instance, the index entry on themes, such as African-American middle class, immigrant experience, and miscegenation, lead to many specific novels and authors..." (Booklist starred review)

"; arrFadeLinks[18] = "http://potomacindexing.com"; arrFadeTitles[18]="

"I appreciate all your efforts, your prompt response, and your timely deliveries."



"; } // You can also play with these variables to control fade speed, fade color, and how fast the colors jump. var m_FadeOut = 255; var m_FadeIn=0; var m_Fade = 0; var m_FadeStep = 3; var m_FadeWait = 8000; var m_bFadeOut = true; var m_iFadeInterval; window.onload = Fadewl; var arrFadeLinks; var arrFadeTitles; var arrFadeCursor = 0; var arrFadeMax; function Fadewl() { m_iFadeInterval = setInterval(fade_ontimer, 10); arrFadeLinks = new Array(); arrFadeTitles = new Array(); setupFadeLinks(); arrFadeMax = arrFadeLinks.length-1; setFadeLink(); } function setFadeLink() { var ilink = document.getElementById("fade_link"); ilink.innerHTML = arrFadeTitles[arrFadeCursor]; ilink.href = arrFadeLinks[arrFadeCursor]; } function fade_ontimer() { if (m_bFadeOut) { m_Fade+=m_FadeStep; if (m_Fade>m_FadeOut) { arrFadeCursor++; if (arrFadeCursor>arrFadeMax) arrFadeCursor=0; setFadeLink(); m_bFadeOut = false; } } else { m_Fade-=m_FadeStep; if (m_Fadem_FadeIn)) ilink.style.color = "#" + ToHex(m_Fade); } function Faderesume() { m_iFadeInterval = setInterval(fade_ontimer, 10); } function ToHex(strValue) { try { var result= (parseInt(strValue).toString(16)); while (result.length !=2) result= ("0" +result); result = result + result + result; return result.toUpperCase(); } catch(e) { } }