function testimonials() {

  testimonial_array = new Array("\"I just wanted to say thank you for the site. It has helped me so much!\"",
                              "\"I am truly impressed with the comprehensiveness of information on the site... keep up the great work!\"",
                              "\"Following your work on my site, my monthly sales doubled, and I've been getting great feedback! Thanks!\"",
                              "\"I never realized how important the user experience really is! Now my customers are happy, and my business is booming.\"",
                              "\"Search engines are finding us for the first time... this is great!\"",
                              "\"This site is remarkable and is meeting our hopes for a comprehensive tool to connect all the interested parties. Thank you!\"",
                              "\"Since the relaunch of the website our orders have doubled! The new design has really made a difference!\"",
                              "\"Thank you for a wonderful resource! The web site is AWESOME!!!!!!!!!!!\"" );

  first_testimonial = Math.round(Math.random() * (testimonial_array.length - 1));
  second_testimonial = Math.round(Math.random() * (testimonial_array.length - 1));
  if(second_testimonial == first_testimonial) {
    if(second_testimonial > 1) { second_testimonial--; }
    else { second_testimonial++; }
  }
  document.getElementById("testimonials").innerHTML = testimonial_array[first_testimonial];
  //document.getElementById("testimonials").innerHTML = testimonial_array[first_testimonial] + "<div class=\"dotted_line\"></div>" + testimonial_array[second_testimonial];
}

function openWindow(src,w,h) {
  w+=30; h+=20;
  window.open(src,"popup",'scrollbars,width='+w+',height='+h+'');
}

function imageOver(id, name) {
  id.src = "./images/"+name+"_sm.jpg";
}

function image0ut(id, name) {
  id.src = "./images/"+name+"_bw.jpg";
}
