/* This script is for the image gallery on the "Our Clients' page*/

var num=0;

imgArray = [
  ['images/hand_lotion.jpg','Hand Lotion','Major Producer of Family Skin Care Products.'],
  ['images/contact_lens.jpg','Contact Lens','Leading Manufacturer in the Vision Care Industry.'],
  ['images/baby_bath.jpg','Baby Shampoo','Fortune 50 Health Care & Personal Consumer Manufacturer.'],
  ['images/pills_asst.jpg','Acetaminophen','Global Leader in the OTC Pharmaceutical Industry.'],
  ['images/stent.jpg','Medical Stent','Innovator of Medical Devices & Surgical Care.'],
  ['images/microscope.jpg','Biotechnolgy Research','Pioneer & Leader in the Field of Biomedicines & Immunology.'],
  ['images/pills_blue.jpg','Ibuprofen','World Leader of High-quality Health Care Products.'],
  ['images/pills_purple.jpg','Purple Pills','Leading Pharma Company With 100 Years Experience.'],
  ['images/toothbrush.jpg','Toothpaste','Large Household & Personal Care Products Company.']
]

function slideshow(slide_num) {
  document.getElementById('mypic').src=imgArray[slide_num][0];
  document.getElementById('mypic').alt=imgArray[slide_num][1];
  document.getElementById('burns').innerHTML=imgArray[slide_num][2];
}

function slideshowUp() {
  num++;
  num = num % imgArray.length;
  slideshow(num);
}

function slideshowBack() {
  num--;
  if (num < 0) {num=imgArray.length-1;}
  num = num % imgArray.length;
  slideshow(num);
}

