/* 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 */

/*
To change the values in the setupLinks function below.
You will notice there are two arrays for each of Titles and
Links. Currently there are 3 items in each array, but you can easily
expand on that by adding to the array. For example, to add a 4th record,
you would simply include the following 2 lines at the end of setupLinks
function:

arrLinks[4] = "someURL.htm";
arrTitles[4] = "Some title";
*/
function setupLinks() {

  arrPeople[0] = "Scott Gallagher,<br />Keynote Speaker, Program facilitator<br />";
  arrCompanys[0] = "www.scottgallagher.ca";
  arrLinks[0] = "http://www.scottgallagher.ca/";
  arrComments[0] = "Subscribing to the Scott’s Directory of Canadian Schools Online was <b>the most profitable business decision we made in the past 12 months</b>.  Our business literally went <b>from a mostly provincial business to nationwide almost over night</b>.  During the last school year, we delivered our program to approximately 40 schools we would not have gotten into had it not been for the Scott's database.";

  arrPeople[1] = "Stacey Matos, <br />National SSG Marketing Coordinator<br />";
  arrCompanys[1] = "G.N. Johnston Equipment Co. Ltd.";
  arrLinks[1] = "http://www.johnstonequipment.com";
  arrComments[1] = "I like that I can set up <b>multiple users</b> and allow other people to use it on their own time. It saves me from trying to find what they need. It's also good if I'm away from the office, or on a different computer...don't need to rely on having it installed like the CD, so its <b>very convenient</b>.";

  arrPeople[2] = "Zel Spillman,<br/>";
  arrCompanys[2] = "A1CareerCoach.com";
  arrLinks[2] = "http://www.A1CareerCoach.com";
  arrComments[2] = "It is clear that <b>Scott's Directories has a passion for what they do</b>. When helping students find positions in the Hidden Job Market, I stress the importance of enthusiasm and passion when job hunting. Moreover, I would like to tell you that <b>Scott's Directories is at the top of my list</b> when demonstrating to students the use of databases to find companies in the industry they are anxious to work in and, very importantly, finding a company that is close to home.";

  arrPeople[3] = "Emil Alexander, President<br />";
  arrCompanys[3] = "Hemco Motors";
  arrLinks[3] = "http://www.hemco.com/";
  arrComments[3] = "My name is Emil Alexander and I am the President of Hemco Motors. I have been using Scott's Directories for the last 3 years. It is <b>very organized and extremely user friendly</b>. I am able to quickly find all the current information that I need to know about clientele and prospective clients.<br/> I find it to be an <b>invaluable source of information</b> and could not be without it. We have used it extensively for our marketing campaigns with great success. <b>I would highly recommend Scott‘s Directories</b> to anyone!";

  arrPeople[4] = "Éric Lafortune,<br/>";
  arrCompanys[4] = "Gélatine Technology Inc. (Montreal, QC)";
  arrLinks[4] = "http://www.geltec.ca/";
  arrComments[4] = "Very user friendly, easy to conduct search and consult information gathered. Fields for conducting search are very good. <b>Benefits: showing us the business type and products manufactured.</b>";

  
}

var m_iInterval;
var m_Height;
//window.onload = wl;
var iScroll=0;

var arrLinks;
var arrCompanys;
var arrPeople;
var arrComments;

var arrCursor = 0;

var arrMax;
window.onload=wl;

function wl() {
  m_iInterval = setInterval(ontimer, 10);
  var base = document.getElementById("jump_base");

  m_Height = base.offsetHeight;

  var divi = parseInt(m_Height/5);
  m_Height = divi*5;


  arrLinks = new Array();
  arrPeople = new Array();
  arrCompanys = new Array();
  arrComments = new Array();
  
  setupLinks();
  arrMax = arrLinks.length-1;
  setLink();
}
function setLink() {
  
  var icomment = document.getElementById("tcomment");
  icomment.innerHTML=arrComments[arrCursor];

  var iperson = document.getElementById("tperson");
  iperson.innerHTML=arrPeople[arrCursor];

  var ilink = document.getElementById("tlink");
  ilink.innerHTML = arrCompanys[arrCursor];
  ilink.href = arrLinks[arrCursor];
}
function ontimer() {
  var base = document.getElementById("jump_base");
  iScroll+=5;
  if (iScroll>(m_Height*2)) {
    iScroll=0;
    arrCursor++;
    if (arrCursor>arrMax)
      arrCursor=0;
    setLink();
  }
  if (iScroll==m_Height) {
    pause();
    m_iInterval = setTimeout(resume, 4000);
  }
  base.scrollTop=iScroll;
}
function pause() {
  clearInterval(m_iInterval);
}
function resume() {
  m_iInterval = setInterval(ontimer, 10);
}
