<!-- slideshow -->
theimage = new Array();
// Format: theimage[...]=[image URL, link URL, name/description]

theimage[0]=["http://www.steelbird.hu/banner/content/images/jm_1.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=just+mobile&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[1]=["http://www.steelbird.hu/banner/content/images/jm_2.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=just+mobile&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[2]=["http://www.steelbird.hu/banner/content/images/jm_3.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=just+mobile&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[3]=["http://www.steelbird.hu/banner/content/images/jm_4.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=just+mobile&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[4]=["http://www.steelbird.hu/banner/content/images/ozaky_excavator.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[5]=["http://www.steelbird.hu/banner/content/images/ozaky_stylus.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[6]=["http://www.steelbird.hu/banner/content/images/ozaky_noextinction.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[7]=["http://www.steelbird.hu/banner/content/images/ozaky_dynasty.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[8]=["http://www.steelbird.hu/banner/content/images/icarry_c.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[9]=["http://www.steelbird.hu/banner/content/images/ozakiverze.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[10]=["http://www.steelbird.hu/banner/content/images/ozakibamboo.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[11]=["http://www.steelbird.hu/banner/content/images/icarry_n.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[12]=["http://www.steelbird.hu/banner/content/images/icarry_s.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[13]=["http://www.steelbird.hu/banner/content/images/icarry_u.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

theimage[14]=["http://www.steelbird.hu/banner/content/images/icoat.jpg", "http://www.notebookbags.hu/advanced_search_result.php?keywords=ozaki&search_in_description=1&inc_subcat=1&x=0&y=0", ""];

playspeed=5000;
i=0;

window.onload=function(){
	preloadSlide();
	SetSlide(0);
	PlaySlide();
}
function SetSlide(num) {
	i=num%theimage.length;
	if(i<0)i=theimage.length-1;
	document.images.imgslide.src=theimage[i][0];
}

function PlaySlide() {
	if (!window.playing) {
		PlayingSlide(i+1);
		if(document.slideshow.play){
			document.slideshow.play.value="   Stop   ";
		}
	}
	else {
		playing=clearTimeout(playing);
		if(document.slideshow.play){
			document.slideshow.play.value="   Play   ";
		}
	}
	// if you have to change the image for the "playing" slide
	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];
	}
}
