$(document).ready(function() {
  
  // przycisk powrotu
  $('a.back').bind('click', function(){
  history.back();
  return false;
  });
  
  // wywolanie drukowania
  $('a.print').bind('click', function(){
  window.print();
  return false;
  });
   
   
   //client zone
   var open=false;
   $("#czBtn").click(function(){
   		
   		if(open==false){
   			$("#topCont").animate({height:'75px'},100);
   			open=true;
   		}else{
   			$("#topCont").animate({height:'0px'},100);
   			open=false;
   		}
   });
   
   
   
   
   $('#news ul').cycle({
        speed:       400,
        timeout:     5000,
        pager:      '#navBox',
        pagerEvent: 'click'
  });


	$("#partners").cycle({
        speed:       400,
        timeout:     5000
  	});

$("#clients ul").jcarousel({wrap: 'circular'});
	
/////////////////////

var li=$('#slides ul > li').length;
	var boxContWidth=205*li;
	$('#slides ul').css({'width':boxContWidth});



//rotation speed and timer
    //var speed = 5000;
   // var run = setInterval('rotate()', speed);  
     
    //grab the width and calculate left value
    var item_width = $('#slides li').outerWidth();
    var left_value = item_width * (-1.385);
        
    //move the last item before first item, just in case user click prev button
    $('#slides li:first').before($('#slides li:last'));
     
    //set the default item to the correct position
    $('#slides ul').css({'left' : left_value});
 
 
    //if user clicked on prev button
    $('#prev').click(function() {
 
        //get the right position           
        var left_indent = parseInt($('#slides ul').css('left')) + item_width;
 
        //slide the item           
        $('#slides ul').animate({'left' : left_indent}, 200,function(){   
 
            //move the last item and put it as first item              
            $('#slides li:first').before($('#slides li:last'));          
 
            //set the default item to correct position
            $('#slides ul').css({'left' : left_value});
         
        });
 
        //cancel the link behavior           
        return false;
             
    });
 
  
    //if user clicked on next button
    $('#next').click(function() {
         
        //get the right position
        var left_indent = parseInt($('#slides ul').css('left')) - item_width;
         
        //slide the item
        $('#slides ul').animate({'left' : left_indent}, 200, function () {
             
            //move the first item and put it as last item
            $('#slides li:last').after($('#slides li:first'));                 
             
            //set the default item to correct position
            $('#slides ul').css({'left' : left_value});
         
        });
                  
        //cancel the link behavior
        return false;
         
    });       
     /*
    //if mouse hover, pause the auto rotation, otherwise rotate it
    $('#slides').hover(
         
        function() {
            clearInterval(run);
        },
        function() {
            run = setInterval('rotate()', speed);  
        }
    );
       */  

 
//a simple function to click next link
//a timer will call this function, and the rotation will begin :) 








var box;
var boxOpen;
$("#slides ul li").click(function(){

		
		if(box!=$(this).attr("id") && boxOpen===true){
			$("#"+box).animate({width: '-=200px'}, 200);
			$("#"+box +" .iBleft span").animate({right:'-12px'},50);
			$("#"+box +" .iBleft img").animate({opacity:'1'},100);
			box=$(this).attr("id");
			$(this).animate({width: '+=200px'}, 200);
			$("#"+box +" .iBleft img").animate({opacity:'0.7'},100);
			$("#"+box +" .iBleft span").animate({right:'0'},50);
				
		}else{
			if(box==$(this).attr("id")&& boxOpen===true){
				$(this).animate({width: '-=200px'}, 200);
				$("#"+box +" .iBleft img").animate({opacity:'1'},100);
				$("#"+box +" .iBleft span").animate({right:'-12px'},50);
				box=false;
				boxOpen=false;
			}else{
				$(this).animate({width: '+=200px'}, 200);
				box=$(this).attr("id");
				$("#"+box +" .iBleft img").animate({opacity:'0.7'},100);
				$("#"+box +" .iBleft span").animate({right:'0'},50);
				boxOpen=true;
			}	
   		}
   		
});






//oferta //zdjecia podstrony
$(".oBcTop,.oBcBottom,#art_photos ul li a ").hover(function(){
	$(this).find('.sm').css({'display':'block'});
	$(this).find('.sma').css({'display':'block'});
	$(this).find('.gal').css({'display':'block'});
},function(){
	$(this).find('.sm').css({'display':'none'});
	$(this).find('.sma').css({'display':'none'});
	$(this).find('.gal').css({'display':'none'});
});


   
});
/*
function rotate() {
    $('#next').click();
}*/
