
function setupFadeLinks() {
arrFadeTitles[0] = "";
arrFadeTitles[1] = "&quot;Well boys you certainly did it for me. I looked at your site and decided you knew what you were talking about and bought a jabil put. Just cashed in for a 200% profit.Whu did I buy only one ???? love you guys thanks so much.&quot; -- Dennis",
arrFadeTitles[2] = "&quot;Wow! You guys are &quot;right on the money&quot;! You're accuracy and technical analysis are excellent. I bought your recent recommendation on &quot;JBL&quot;, waiting for it to break down below $35 with July 30 puts for $0.35 a contract. Watched it go down for 3 days and then PLUNGED this morning and sold them for $4.00 !! That's almost a 12 bagger!! Thank You!&quot;",
arrFadeTitles[3] = "&quot;Swing trading got alot easier with Marketspath.com list of possible breakout stocks. I made quick 15-25% gain in matter of days on stocks such ENWV, ADAM, CAAS, ARBA, and AGR.&quot; -- RK, Northern VA/DC",
arrFadeTitles[4] = "&quot;If you want to grow your stock portfolio during current volatile market, marketspath.com offers experienced technical analysis (TA)in identifying breakout stocks that can yield 15-25% on each trade.&quot;",
arrFadeTitles[5] = "&quot;Great site! Great column you send us! Thank you.&quot;",
arrFadeTitles[6] = "&quot;I just wanted to thank you guys for doing the Marketspath Nightly report. I still don't understand how your not charging for the site, but I am thankful. You have kept me on the right side of the market and have made some great money since joing your service. Thanks again!&quot; -- BW",
arrFadeTitles[7] = "&quot;first, let me say what a great job at technical analysis and terific site. I have been an equities trader for a couple years now and look forward to your market commentary every night.&quot;",
arrFadeTitles[8] = "&quot;Wow, nice call on CELL. I am up over 65% since your recomendation. Thanks. -- Jere D",
arrFadeTitles[9] = "&quot;Thanks for the clear and precise manner in which you present your views. I have learned we all have to make and be responsible for our decisions but you make the process easier. Keep up the good work, you have helped me alot. Have a good week.&quot; -- Bill",
arrFadeTitles[10] = "&quot;Thanks for the evening report and views. You have shown me a new way of looking at the markets.&quot; -- Glenn",
arrFadeTitles[11] = "&quot;I am with you on dow,I think it has reached the top give or take few points.I like how you put everything in words and its so clear.thank you.&quot; -- V",
arrFadeTitles[12] = "&quot;I really like your web. and most your picks. I played AKAM from $17 and had three free rides. In AMKR at $5.8 and out at $8,waited for consolidation at $7.5 and did not get anything, chased in at $8.2 and out at $9.&quot; -- Peter",
arrFadeTitles[13] = "&quot;Sweet site, love the tech analysis. Iv'e been stalking stxs for the breakout, but your tech reading is alot more concise. Actually, this is one of the more intelligent sites I've come across.&quot; -- MM",
arrFadeTitles[14] = "&quot;First, let me say what a great job at technical analysis and terific site. I have been an equities trader for a couple years now and look forward to your market commentary every night.&quot;S",
arrFadeTitles[15] = "&quot;Great chart and analysis.&quot; -- Al",
arrFadeTitles[16] = "&quot;Thanks for your daily postings, and I appreciate your hard work and dedication.&quot; -- Don",
arrFadeTitles[17] = "&quot;Thanks the FREE site.. I enjoy reading your reports every night..again, thanks for the great information.&quot; -- Jeff",
arrFadeTitles[18] = "&quot;I just signed up and I just wanted to tell you thanks for your info. I bought FNSR before it broke today on huge volume. Thanks again for keeping us on the right side.&quot; -- Roger",
arrFadeTitles[19] = "&quot;This is a great site.&quot; -- S",
arrFadeTitles[20] = "&quot;You are the master. I did not short iiin, I should have.&quot; -- K",
arrFadeTitles[21] = "&quot;Thanks for SIRF. Looked at fundamentals before shorting it. Held through earnings after shorting it $39.3. Covered AH at $33.8 Not bad for a day's trade.&quot; -- RG",
arrFadeTitles[22] = "&quot;Hi, just discovered your site today and I like what I see so far.&quot; -- Des"
}

/*
var m_FadeOut = 255;
var m_FadeIn=0;
var m_Fade = 0;
*/
var m_FadeOut = 0;
var m_FadeIn=255;
var m_Fade = 255;
var m_FadeStep = 3;
var m_FadeWait = 4600;
var m_bFadeOut = true;

var m_iFadeInterval;

window.onload = Fadewl;

var arrFadeTitles;
var arrFadeCursor = 0;
var arrFadeMax;

function Fadewl() {
  m_iFadeInterval = setInterval(fade_ontimer, 10);
  arrFadeTitles = new Array();
  setupFadeLinks();
  arrFadeMax = arrFadeTitles.length-1;
  setFadeLink();
}

function setFadeLink() {
  var ilink = document.getElementById("fade_link");
  ilink.innerHTML = arrFadeTitles[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_Fade<m_FadeIn) {
      clearInterval(m_iFadeInterval);

	  m_FadeWait = arrFadeTitles[arrFadeCursor].length * 32;
      setTimeout(Faderesume, m_FadeWait);
      m_bFadeOut=true;
    }
  }
  var ilink = document.getElementById("fade_link");
  if ((m_Fade<m_FadeOut)&&(m_Fade>m_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)
  {
  }
}

