var img = new Array("/images/svn/products/250/949-AA_250.jpg", "/images/svn/products/250/909-AA_250.jpg", "/images/svn/products/250/879-AA_250.jpg", "/images/svn/products/250/916-AA_250.jpg", "/images/svn/products/250/880-AA_250.jpg");
var lnk = new Array("/Nike-Shop/","/Styling-Aerobika/","/Styling-Fitnes/", "/Styling-Tek/", "/Styling-Ples/");
var alt = new Array("Nike Women Shop","Nike Women Shop - Aerobika", "Nike Women Shop - Fitnes", "Nike Women Shop - Tek", "Nike Women Shop - Ples");

var currAd = 0;
var imgCnt = 5;
var intervalId = 0;

cycle();
intervalId = setInterval("cycle()", 5000);

function cycle() {
	if (currAd == imgCnt) {
		currAd = 0;
	}
	document.getElementById('nwadButt0').setAttribute("class", "");
    document.getElementById('nwadButt1').setAttribute("class", "");
    document.getElementById('nwadButt2').setAttribute("class", "");
    document.getElementById('nwadButt3').setAttribute("class", "");
    document.getElementById('nwadButt4').setAttribute("class", "");


	var currButt = "nwadButt" + currAd;
 document.getElementById(currButt).setAttribute("class", "active");

	document.getElementById('nwBanner').src=img[currAd];
    document.getElementById('nwBanner').alt=alt[currAd];
	document.getElementById('nwBanner').title=alt[currAd];	
	document.getElementById('nwLink').href=lnk[currAd];
	currAd++;
}

function stop_cycle(bannId) {

        clearInterval(intervalId);

        document.getElementById('nwadButt0').setAttribute("class", "");
        document.getElementById('nwadButt1').setAttribute("class", "");
        document.getElementById('nwadButt2').setAttribute("class", "");
        document.getElementById('nwadButt3').setAttribute("class", "");
        document.getElementById('nwadButt4').setAttribute("class", "");

        var currButt = "nwadButt" + bannId;
        document.getElementById(currButt).setAttribute("class", "active");


        document.getElementById('nwBanner').src=img[bannId];
        document.getElementById('nwBanner').alt=alt[bannId];
        document.getElementById('nwBanner').title=alt[bannId];
        document.getElementById('nwLink').href=lnk[bannId];

}


