﻿//DECLARATION
var counter;
var imgSRC = new Array(6); 
var DivDescription = new Array(6);

//SET VARIABLES
counter = 0;

imgSRC[0] = "Images/Portfolio/Paramedic.jpg";
imgSRC[1] = "Images/Portfolio/DogTunnel.jpg";
imgSRC[2] = "Images/Portfolio/Schauenburg.jpg";
imgSRC[3] = "Images/Portfolio/LiveWireHarnesses.jpg";
imgSRC[4] = "Images/Portfolio/PublicSchool.jpg";
imgSRC[5] = "Images/Portfolio/TempoTime.jpg";
imgSRC[6] = "Images/Portfolio/ImprovementContractors.jpg";



DivDescription[0] = "The OPA has worked to enhance the professional image of paramedics, to improve communications between paramedics,\
                     and to lobby for improvements to the standards of patient care. Our database driven secure ecommerce site allows our client to \
                     renew OPA membership, register for OPA events or send OPA Newsflashes via e-mail to their members.\
                     <ul><li>ASP, XML, SSL, Javascript</li><li>Web Site Address: \
                     <a rel='external' href='http://www.opastore.ca'>www.opastore.ca</a></li></ul>";;
 
DivDescription[1] = "Schauenburg Industries Ltd online store is a leading manufacturer of dog agility tunnels supplied to all of North America over the past seven years. \
                     This site uses the https: protocol to ensure that the information cannot be stolen by a third party. \
                     Our Database driven secure ecommerce is compliant with the PCI Data Security Standard.<ul><li>HTTPS, SSL, Dynamic HTML, CSS, ASP</li><li>Web Site Address: \
                     <a rel='external' href='http://www.dogtunnels.net'>www.www.dogtunnels.net</a></li></ul>";     
                                          
DivDescription[2] = "Schauenburg Industries Limited, North Bay, Ontario, Canada is a member of the Schauenburg Group of Companies. \
                     Established in the heart of Canada's mining district in 1969, they continue to provide quality and innovative \
                     products for the mining, tunneling, forestry and other industries. Schauenburg sought a simple Web pages \
                     to exhibit their services.<ul><li>Static HTML, CSS</li><li>Web Site Address: \
                     <a rel='external' href='http://www.schauenburg.ca'>www.schauenburg.ca</a></li></ul>";
                     
DivDescription[3] = "Live Wire Harnesses is a contract assembler of customer designed wire harnesses and cable assemblies.  \
                     They specialize in automotive, industrial equipment and appliance wiring assemblies. \
                     We offer hosting services and custom application for Live Wire Harnesses<ul><li>Web Site Under Construction</li><li>Web Site Address: \
                     <a rel='external' href='http://livewireharnesses.com'>www.livewireharnesses.com</a></li></ul>";

DivDescription[4] = "Laurentian Public School. The home of the Laurentian Lions and the pride of French Immersion. \
                     Laurentian is the small school with a big heart. \
                     They are part of our ever growing Web Managment program.<ul><li>Dynamic Web Page, CSS, ASP.NET</li><li>Web Site Address: \
                     <a rel='external' href='http://laurentianpublicschool.com'>www.laurentianpublicschool.com</a></li><br /> \
                     <li>Visit our Web Managment Program<br /><a rel='external' href='http://www.buildyourownwebsite.ca'>www.buildyourownwebsite.ca</a></li></ul>";

DivDescription[5] = "Tempo Time's objective is to meet the exact requirements of their customers by designing \
                     and supplying quality timepieces that are a pleasure to give and a joy to own. \
                     Our database driven secure site allows Tempo Time employees to manage all products in real time.<ul><li>Dynamic Web Page, CSS, ASP.NET</li><li>Web Site Address: \
                     <a rel='external' href='http://tempotime.net'>www.tempotime.net</a></li></ul>";
                     
DivDescription[6] = "North City Improvement has been serving North Bay and area's roofing and siding needs for over 5 yrs. \
                     Their objective is to make your renovation or upgrade project as enjoyable and efficient as possible. \
                     We have provided a clean and easy to navigate Web site to illustrate their services.<ul><li>Static HTML, CSS</li><li>Web Site Address: \
                     <a rel='external' href='http://ncimprovements.com'>www.ncimprovements.com</a></li></ul>";                     

                

setTimeout('nextImage(0)',100);


function nextImage(i){
   counter = counter + i;
   
   if (counter < 0){counter=6;}
   if (counter > 6){counter=0;} 
   //alert(counter);
   document.getElementById('imgWebPage').src = imgSRC[counter]
   document.getElementById('companySites').innerHTML = DivDescription[counter]
}

 







