var dicom=new Array();
var numCom=3;
dicom[0]="System zarządzania treścią";
dicom[1]="Łatwa publikacja strony";
dicom[2]="Tania i prosta rozbudowa";
dicom[3]="Wheels CMS";

var curCom=0;

function swapCom()
{
    
    var nextCom=curCom+1;
    if (nextCom>=numCom){
        nextCom=0;
        }
    if (dicom[nextCom]!="")
    {
      var target=0;
      if (document.getElementById("slideCom")){
            target=document.getElementById("slideCom");
            }

      if (target){
            document.getElementById("slideCom").innerHTML=dicom[nextCom];
            curCom=nextCom;
            }
      setTimeout("swapCom()", 3000);
    }
    else{
      setTimeout("swapCom()", 800);
    }

}
setTimeout("swapCom()", 3000);
