/*
******************** Random Line Picker Script by Vasily Myazin @ Konspire Design **************************
******************** v.0.6, November 2008                                         **************************
*/

var tstm = new Array;
tstm[0] = "Konspire Design has proved itself time and again to be a dynamic, savvy internet marketing and web design firm that is agile, cutting edge, affordable and creative. <em>&mdash;Jack Binder, Producer \"Reign Over Me\", \"The Upside of Anger\" - Greentrees Films, Inc.</em>";
tstm[1] = "Konspire Design is a great design and graphics company that is fast, responsive, reliable and effective in executing our marketing goals. <em>&mdash;Peter Onsmark, Filmbudget.com</em>";
tstm[2] = "Konspire Design continues to be our go to company for quality design, great graphics and attention to detail in marketing our products. <em>&mdash;Michigan Film Production.com</em>";
tstm[3] = "The artwork you have made for our next compilation is looking beautiful! I really like your touch, the colours and the style that you have used! <em>&mdash;Abhimanyu Malhotra, manager of Namaha Records, India</em>";
tstm[4] = "Working with Konspire Design was a breeze. Thanks to them I have a great portfolio website which I can update myself, and it's also easy to find on Google. <em>&mdash;Shai Kalev, animator and programmer</em>";

function $(id) {
   return document.getElementById(id)
}

function showRndLine() {
  rand_no = Math.random();
  rand_no = rand_no * tstm.length;
  rand_no = Math.ceil(rand_no) - 1;
  $('jsLine').innerHTML = tstm[rand_no];
}

function showNextLine() {
  if (rand_no >= tstm.length - 1) {        
    rand_no = 0;
    $('jsLine').innerHTML = tstm[rand_no];
  }
  else {
    $('jsLine').innerHTML = tstm[rand_no + 1];
    rand_no++;
  }
}
