/* 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 */

/*
function setupFadeLinks() {
  arrFadeLinks[0]	= 'testimonials.php';
  arrFadeTitles[0]	= '<span style="font-weight:normal; font-style:italic;"> </span>';
  arrFadeLinks[1]	= 'testimonials.php';
  arrFadeTitles[1]	= '<span class="quote">"Dr Jeon is an excellent healer and I would not hesitate to recommend him"</span><br>A Wilkinson,  Aircraft Engineer. 45';
  arrFadeLinks[2]	= 'testimonials.php';
  arrFadeTitles[2]	= '<span class="quote">"My treatment has completely resolved my severe low back pain. It was pain free and I see my general strength overall has improved."</span><br>K Harman, Nurse. 28';
  arrFadeLinks[3]	= 'testimonials.php';
  arrFadeTitles[3]	= '<span class="quote">"Yoon is an absolute gem whom I can trust with my health. Thanks you yoon, you deserve to do really well in your new practise."</span><br>D Asher,  Healthcare practitioner. 53';
  arrFadeLinks[4]	= 'testimonials.php';
  arrFadeTitles[4]	= '<span class="quote">"After more than 50 years of smoking and trying every substitute on the market, I am delighted to say that finally I no longer have the need for cigarettes with Yoon&#039;s acupuncture treatment ..."</span><br>M Damen, Retired. 62';
  arrFadeLinks[5]	= 'testimonials.php';
  arrFadeTitles[5]	= '<span class="quote">"Dr Jeon&#039;s diagnosis and treatment were spot on and I found his manner very reassuring."</span><br>K Viney, Housewife. 59';
  arrFadeLinks[6]	= 'testimonials.php';
  arrFadeTitles[6]	= '<span class="quote">"I would highly recommend his services to anyone who takes their sport seriously, in order to minimize the risk of short-term injuries becoming long-term problems later in life."</span><br>A Thornton,  Student. 15';
  arrFadeLinks[7]	= 'testimonials.php';
  arrFadeTitles[7]	= '<span class="quote">"His use of Acupuncture combined with the Chiropractic was extremely beneficial in the case of the Sciatica ..."</span><br>R Dorking, Carpenter. 65';
  arrFadeLinks[8]	= 'testimonials.php';
  arrFadeTitles[8]	= '<span class="quote">"I have every faith in Yoon as a complimentary medicine practitioner."</span><br>J Loader, Solicitor. 58';
  arrFadeLinks[9]	= 'testimonials.php';
  arrFadeTitles[9]	= '<span class="quote">"Being a believer of Chiropractic for 25 years obviously it is something I totally approve and can highly recommended Dr Jeon to administer the required adjustment."</span><br>I Sturgess, Cook assistant. 59';
  arrFadeLinks[10]	= 'testimonials.php';
  arrFadeTitles[10]	= '<span class="quote">"Dr Jeon is always sympathetic, courteous and is prepared to take time listening as well as explaining and I recommend him most highly."</span><br>P James. Hypnotherapist, 70';
  arrFadeLinks[11]	= 'testimonials.php';
  arrFadeTitles[11]	= '<span class="quote">"I feel very safe in his hands, and have no hesitation in recommending him to others."</span><br>R C Dennis, College lecturer. 74';
  arrFadeLinks[12]	= 'testimonials.php';
  arrFadeTitles[12]	= '<span class="quote">"Dr Yoon treated for back strain I sustained while exercising. The treatment was quick and very effective. It relieved the pain, restored flexibility and I have not had any further issues. I would recommend him highly."</span><br>D Viney, Producer. 41';
  arrFadeLinks[13]	= 'testimonials.php';
  arrFadeTitles[13]	= '<span class="quote">"I would recommend anyone to try both of these treatments as my results have been astonishing."</span><br>S.D. Bicknell. 66';
  arrFadeLinks[14]	= 'testimonials.php';
  arrFadeTitles[14]	= '<span class="quote">"since my first visit I have not smoked at all ... My thanks go to Yoon as I no longer have to stand out in the cold to burn my money away!"</span><br>L.Colloff, Deputy Company Secretary. 40';
  arrFadeLinks[15]	= 'testimonials.php';
  arrFadeTitles[15]	= '<span class="quote">"I am amazed and delighted that not only has he got rid of the pains in my legs and feet but I am able to walk  properly again!!"</span><br>R.A. Bicknell. 74';
}
*/

// You can also play with these variables to control fade speed, fade color, and how fast the colors jump.
var m_FadeOut	= 240;
var m_FadeIn	= 0;
var m_Fade	= 63;

var m_FadeStep = 2;
var m_FadeWait = 4000;
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_Fade<m_FadeIn) {
      clearInterval(m_iFadeInterval);
      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)
  {
  }
}


