theimage = new Array();
theimage[0]=["http://www.armacomp.hu/akciokep/ACER_V233HABD.jpg", "http://www.armacomp.hu/akcio.php", "ACER V233HABD"];
theimage[1]=["http://www.armacomp.hu/akciokep/BF_BC2.jpg", "http://www.armacomp.hu/akcio.php", "BattleField Bad Company 2"];
theimage[2]=["http://www.armacomp.hu/akciokep/FUJI_EsprimoMobile_v5535.jpg", "http://www.armacomp.hu/akcio.php", "FUJI EsprimoMobile v5535"];
theimage[3]=["http://www.armacomp.hu/akciokep/GIGABYTE_HD5750_1G.jpg", "http://www.armacomp.hu/akcio.php", "GIGABYTE HD5750 1G"];
theimage[4]=["http://www.armacomp.hu/akciokep/konfig.jpg", "http://www.armacomp.hu/akcio.php", "konfig"];
theimage[5]=["http://www.armacomp.hu/akciokep/TL_WN321G.jpg", "http://www.armacomp.hu/akcio.php", "TL WN321G"];
theimage[6]=["http://www.armacomp.hu/akciokep/TPLINK_TLWR340GD.jpg", "http://www.armacomp.hu/akcio.php", "TPLINK TLWR340GD"];
theimage[7]=["http://www.armacomp.hu/akciokep/WayteQ_X820.jpg", "http://www.armacomp.hu/akcio.php", "WayteQ X820"];




playspeed=6500;
i=0;
window.onload=function(){
	SetSlide(0);
	PlaySlide();
	PreloadSlide();
}
function SetSlide(num) {
	i=num%theimage.length;
	if(i<0)i=theimage.length-1;
	document.images.imgslide.src=theimage[i][0];
	document.getElementById('slidebox').innerHTML=theimage[i][2];
document.getElementById('slidecount').innerHTML= "<b>"+(i+1)+"</b>/<b>"+theimage.length+"</b>";
}
function PlaySlide() {
	if (!window.playing) {
		PlayingSlide(i+1);
		if(document.slideshow.play){
		}
	}
	if(document.images.imgPlay){
		setTimeout('document.images.imgPlay.src="'+imgStop+'"',1);
		imgStop=document.images.imgPlay.src
	}
}
function PlayingSlide(num) {
	playing=setTimeout('PlayingSlide(i+1);SetSlide(i+1);', playspeed);
}
function PreloadSlide() {
	for(k=0;k<theimage.length;k++) {
		theimage[k][0]=new Image().src=theimage[k][0];
	}
}
