/* there are 5 slides */
var _current = 1;
var _max	 = 5;

/* dlugie nazwy zmiennych brzmia madrzej */
var just_in_the_middle_of_switching_the_visual = false;

$(document).ready(function()
{
	
	
	var links = $('div.linki a');
	_max = links.length;
	links.mouseover( function() {
		if( just_in_the_middle_of_switching_the_visual == true )
		{
			return;
		}
		
		just_in_the_middle_of_switching_the_visual = true;
		
		var id = parseInt(this.innerHTML);
		$('a.current').fadeOut( 300, function() {
			current_box = $(this);
//			$(this).removeClass('current').addClass('hidden');
			$(this).removeClass('current').fadeOut(1,function(){});
			
			$('a.act').removeClass('act');
			_current = id;
//			$('a[text='+id+']').addClass('act');
//			$('a#vis_'+id).addClass('current').removeClass('hidden');
			$('a#vis_'+id).addClass('current').fadeIn(1,function(){});
                        $('.linki a[rel='+(id-1)+']').addClass('act');
			just_in_the_middle_of_switching_the_visual = false;
			
		});
	}
	);
	
	$('div.linki').everyTime( 10000, function() {
		
		if( _current == _max )
		{
			_current = 0;
		}
		 $( 'div.linki a[text='+(_current+1)+']' ).mouseover();
	  } );
});