var catlist = new Array(9);
var numblist = new Array(9);
var option = new Array(9);
var licznik = 0;

catlist[0] = "paintball";
catlist[1] = "events";
catlist[2] = "turystyka";
catlist[3] = "paintball";
catlist[4] = "events";
catlist[5] = "turystyka";
catlist[6] = "paintball";
catlist[7] = "events";
catlist[8] = "turystyka";

numblist[0] = 1;
numblist[1] = 1;
numblist[2] = 1;
numblist[3] = 2;
numblist[4] = 2;
numblist[5] = 2;
numblist[6] = 3;
numblist[7] = 3;
numblist[8] = 3;

option[0] = 1;
option[1] = 2;
option[2] = 3;
option[3] = 1;
option[4] = 2;
option[5] = 3;
option[6] = 1;
option[7] = 2;
option[8] = 3;

var htmltext = function(numer){
	return "<img src=\"/newpaintball/templates/adventurepaintball/images/"+ catlist[numer] +"/"+ numblist[numer] +".jpg\" style=\"height:268px; width: 756px;\" />";
}



// slideshow function

var minislide = false;
var start = 0;
var timeout;
var iNumber = catlist.length;
var slide = 1;
var actOption = 0;

var slideshow = function(){
	
	var slide2;
	if(slide == 1){ slide2 = 2;
	}else{slide2 = 1;}
	
	if(actOption >= iNumber){ actOption = 0;}
	
	jQuery('#dziuba_slideshow_img_layer'+slide2).hide();
	jQuery('#dziuba_slideshow_img_layer'+slide).css("z-index", "5");
	jQuery('#dziuba_slideshow_img_layer'+slide2).css("z-index", "10");
	
	jQuery('#dziuba_slideshow_img_layer'+slide2).text(" ");	
	
	jQuery('#dziuba_slideshow_img_layer'+slide2).append(htmltext(actOption)); 
		
		
		jQuery('#dziuba_slideshow_img_layer'+slide2).fadeIn(); 
		
		jQuery('#dziuba_slideshow_option1').text(" ");
		jQuery('#dziuba_slideshow_option2').text(" ");
		jQuery('#dziuba_slideshow_option3').text(" ");
		
		
		switch(option[actOption])
			{
			case 1:
			  jQuery('#dziuba_slideshow_option1').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/1_100.png" alt="Adventure Paintball" title="Adventure Paintball" />');
			  jQuery('#dziuba_slideshow_option2').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/2_60.png" alt="Adventure Events" title="Adventure Events" />');
			  jQuery('#dziuba_slideshow_option3').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/3_60.png" alt="Scout Tour" title="Scout Tour" />');
			  break;
			case 2:
			  jQuery('#dziuba_slideshow_option1').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/1_60.png" alt="Adventure Paintball" title="Adventure Paintball" />');
			  jQuery('#dziuba_slideshow_option2').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/2_100.png" alt="Adventure Events" title="Adventure Events" />');
			  jQuery('#dziuba_slideshow_option3').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/3_60.png" alt="Scout Tour" title="Scout Tour" />');
			  break;
			case 3:
			  jQuery('#dziuba_slideshow_option1').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/1_60.png" alt="Adventure Paintball" title="Adventure Paintball" />');
			  jQuery('#dziuba_slideshow_option2').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/2_60.png" alt="Adventure Events" title="Adventure Events" />');
			  jQuery('#dziuba_slideshow_option3').append('<img src="http://paintball.wroclaw.pl/newpaintball/templates/adventurepaintball/images/slide-logo/3_100.png" alt="Scout Tour" title="Scout Tour" />');
			  break;
			}
		
		licznik++;
		
		
		if(slide == 1){
			slide = 2;}
		else{
			slide = 1;}
			
		if(minislide){
			actOption+=3;
			timeout = setTimeout("slideshowmini()", 3000);
		}else{
			if(licznik == 2){
				actOption+=2;
				licznik = 0;
			}
			else{
				actOption++;}
				
				//alert(licznik);
				
			
			timeout = setTimeout("slideshow()", 5000);
			}
			
		
		
		
}


var slideshowmini = function(){

	var slide2;
	if(slide == 1){ slide2 = 2;
	}else{slide2 = 1;}
	
	if(actOption >= iNumber){ actOption = start;}
	
	jQuery('#dziuba_slideshow_img_layer'+slide2).hide();
	jQuery('#dziuba_slideshow_img_layer'+slide).css("z-index", "5");
	jQuery('#dziuba_slideshow_img_layer'+slide2).css("z-index", "10");
		
	jQuery('#dziuba_slideshow_img_layer'+slide2).text(" ");	
	
	jQuery('#dziuba_slideshow_img_layer'+slide2).append(htmltext(actOption));
	
	
		jQuery('#dziuba_slideshow_img_layer'+slide2).fadeIn(); 
				
		if(slide == 1){
			slide = 2;}
		else{
			slide = 1;}
			
		if(minislide){
		
			actOption+=3;
			timeout = setTimeout("slideshowmini()", 3000);
		}else{
			actOption++;
			timeout = setTimeout("slideshow()", 5000);
			}

}

//// Ready

jQuery(document).ready(function(){	
	
	// start slideshow
	slideshow();
	
	// hover opcja 1
	jQuery("#dziuba_slideshow_button1").hover(function(){
		clearTimeout(timeout);
		start = 0;
		actOption = 0;
		minislide = true;
		slideshow();
	}, function(){
		clearTimeout(timeout);
		actOption = 1;//actOption-=2;
		minislide = false;
		licznik = 1;
		slideshow();
		});
	
	// hover opcja 2	
	jQuery("#dziuba_slideshow_button2").hover(function(){
		clearTimeout(timeout);
		start = 1;
		actOption = 1;
		minislide = true;
		slideshow();
	}, function(){
		clearTimeout(timeout);
		actOption = 0; //actOption-=2;
		minislide = false;
		licznik = 0;
		slideshow();
		});
		
	// hover opcja 3
	jQuery("#dziuba_slideshow_button3").hover(function(){
		clearTimeout(timeout);
		start = 2;
		actOption = 2;
		minislide = true;
		slideshow();
	}, function(){
		clearTimeout(timeout);
		actOption-=2;
		minislide = false;
		licznik = 0;
		slideshow();
		});
});


