
            var numCells = 3;
            var counter2 = numCells*-1;
            var img1 = "img/all_marketing_logos/realdeal.jpg";
            var imagesArray2 = [{
                path: "img/all_marketing_logos/realdeal.jpg",
                link: "http://www.realdeal.hu/"
            }, {
                path: "img/all_marketing_logos/efocus.jpg",
                link: "http://www.efocus.sk/en/news/article/project-zone-2010-summit/"
            }, {
                path: "img/all_marketing_logos/pmr.jpg",
                link: "http://www.pmrpublications.com/"
            }, {
                path: "img/all_marketing_logos/computerworld.jpg",
                link: "http://computerworld.hu/"
            }, {
                path: "img/all_marketing_logos/xpatloop.jpg",
                link: "http://www.xpatloop.com/"
            }, {
                path: "img/all_marketing_logos/pmforum.jpg",
                link: "http://www.pmforum.org/"
            }, {
                path: "img/all_marketing_logos/technika.jpg",
                link: "http://www.technikamagazin.hu/"
            }, {
                path: "img/all_marketing_logos/it-portal.jpg",
                link: "http://www.it-portal.hu/"
            }, {
                path: "img/all_marketing_logos/projects_work.jpg",
                link: "http://www.projectsatwork.com/"
            }, {
                path: "img/all_marketing_logos/BTZEI_web.jpg",
                link: "http://www.budapesttimes.hu/"
            }];
            var inter2 = setInterval(changeImages2, 2000);
            function changeImages2(){
                counter2 += 3;
                
                
                if (counter2 > imagesArray2.length - 1) {
                    counter2 = counter2 - imagesArray2.length;
                };
				
				
                img1Count2 = counter2;
                img2Count2 = counter2 + 1;
                img3Count2 = counter2 + 2;
				
                if (img1Count2 > imagesArray2.length-1) {
                    img1Count2 = img1Count2 - imagesArray2.length;
                };
                if (img2Count2 > imagesArray2.length-1) {
                    img2Count2 = img2Count2 - imagesArray2.length;
                };
                if (img3Count2 > imagesArray2.length-1) {
                    img3Count2 = img3Count2 - imagesArray2.length ;
                };
               // document.getElementById("nums").innerHTML = img1Count2 + '<br />' + img2Count2 + '<br />' + img3Count2+ '<br />' + counter2;
                document.getElementById("image4").src = imagesArray2[img1Count2].path;
                document.getElementById("image5").src = imagesArray2[img2Count2].path;
                document.getElementById("image6").src = imagesArray2[img3Count2].path;
				
				document.getElementById("link4").href = imagesArray2[img1Count2].link;
				document.getElementById("link5").href = imagesArray2[img2Count2].link;
				document.getElementById("link6").href = imagesArray2[img3Count2].link;
                
                
                
            };
            //document.write("<img src=" + imagesArray2[8].path + " alt='' />");
      
