
            var numCells = 3;
            var counter3 = numCells*-1;
            var img1 = "img/pmi_logos/pict1.jpg";
            var imagesArray3 = [{
                path: "img/pmi_logos/yugo.jpg",
                link: "http://www.pmi-yu.org/"
            }, {
                path: "img/pmi_logos/greece.jpg",
                link: "http://www.PMI-GREECE-Chapter.org"
            }, {
                path: "img/pmi_logos/poland.jpg",
                link: "http://www.pmi.org.pl"
            }, {
                path: "img/pmi_logos/hungary.jpg",
                link: "http://www.pmi.hu"
            }, {
                path: "img/pmi_logos/hungary.jpg",
                link: "http://www.pmi.ro"
            }, {
                path: "img/pmi_logos/croatia.jpg",
                link: "http://www.pmi-croatia.org"
            }, {
                path: "img/pmi_logos/bulgaria.jpg",
                link: "http://www.pmi.bg"
            }, {
                path: "img/pmi_logos/newyork.jpg",
                link: "http://www.pminyc.org"
            }, {
                path: "img/pmi_logos/portugal.jpg",
                link: "http://www.pmi-portugal.org"
            }, {
                path: "img/pmi_logos/cologne.jpg",
                link: "http://www.pmicc.de"
            }, {
                path: "img/pmi_logos/uk.jpg",
                link: "http://www.pmi.org.uk"
            }, {
                path: "img/pmi_logos/austria.jpg",
                link: "http://www.pmi-austria.org"
            }];
            var inter2 = setInterval(changeImages3, 2000);
            function changeImages3(){
                counter3 += 3;
                
                
                if (counter3 > imagesArray3.length - 1) {
                    counter3 = counter3 - imagesArray3.length;
                };
				
				
                img1Count3 = counter3;
                img2Count3 = counter3 + 1;
                img3Count3 = counter3 + 2;
				
                if (img1Count3 > imagesArray3.length-1) {
                    img1Count3 = img1Count3 - imagesArray3.length;
                };
                if (img2Count3 > imagesArray3.length-1) {
                    img2Count3 = img2Count3 - imagesArray3.length;
                };
                if (img3Count3 > imagesArray3.length-1) {
                    img3Count3 = img3Count3 - imagesArray3.length ;
                };
               // document.getElementById("nums").innerHTML = img1Count3 + '<br />' + img2Count3 + '<br />' + img3Count3+ '<br />' + counter3;
                document.getElementById("image7").src = imagesArray3[img1Count3].path;
                document.getElementById("image8").src = imagesArray3[img2Count3].path;
                document.getElementById("image9").src = imagesArray3[img3Count3].path;
				
				document.getElementById("link7").href = imagesArray3[img1Count3].link;
				document.getElementById("link8").href = imagesArray3[img2Count3].link;
				document.getElementById("link9").href = imagesArray3[img3Count3].link;
                
                
                
            };
            //document.write("<img src=" + imagesArray3[8].path + " alt='' />");
      
