$(document).ready(function(){

	$(".kolekcja").hover(function(){
		$(".kolekcja").addClass("ButtonDeactiveProduct");
		$(this).removeClass("ButtonDeactiveProduct");
	},function(){
		$(".kolekcja").removeClass("ButtonDeactiveProduct");
	});
	
	$(".stopka").hover(function(){
		$(".stopka").addClass("ButtonDeactive");
		$(this).removeClass("ButtonDeactive");
	},function(){
		$(".stopka").removeClass("ButtonDeactive");
	});

 $(document)[0].oncontextmenu = function() {return false;}  
  var Wwidth = $(window).width(); // Window width
  var Wheight = $(window).height(); // Windows height
  
  var Resizerwidth = $("#resizer").width(); // Resizer Id width
  var Resizerheight = $("#resizer").height(); // Resizer Id height
  
  checkWidth(); //sprawdzenie ramki wyświetlanej
  
	if(Wwidth>1000)
  		Wwidth=1000;
	if(Wheight>700)
  		Wheight=700;
	
		if(Wwidth<$("#foto_INNER").width()){
 			$("#foto_INNER").css({"width":Wwidth,"height":(Wheight-Resizerheight) });
			$("#foto_BIG_RESISER").css({"width":Wwidth,"height":(Wheight-Resizerheight) });
		}else{
			$("#foto_INNER").css({"height":(Wheight-Resizerheight) });
			$("#foto_BIG_RESISER").css({"height":(Wheight-Resizerheight) });
		}
	$('#foto_INNER').crossSlide({
	  fade: 5,
	  variant: true,
	  easing: 'easeInOutQuad'
	}, [
	  {
		src:  'images/slider/m1000x700/1.jpg',
		alt:  'DK foto 1',
		from: '100% 100% 1x',
		to:   '100% 60% 1x',
		time: 6
	  }, {
		src:  'images/slider/m1000x700/2.jpg',
		alt:  'DK foto 2',
		from: 'top left',
		to:   '50% 90% 1.2x',
		time: 6
	  }, {
		src:  'images/slider/m1000x700/3.jpg',
		alt:  'DK foto 3',
		from: '100% 80% 1.5x',
		to:   '80% 50% 1x',
		time: 8
	  }, {
		src:  'images/slider/m1000x700/4.jpg',
		alt:  'DK foto 4',
		from: '100% 100%',
		to:   '30% 50% 1.2x',
		time: 6
	  }, {
		src:  'images/slider/m1000x700/5.jpg',
		alt:  'DK foto 5',
		from: '100% 100%',
		to:   '80% 100%',
		time: 5
	  },{
		src:  'images/slider/m1000x700/6.jpg',
		alt:  'DK foto 6',
		from: '30% 30% 2x',
		to:   '80% 60% 1x',
		time: 6
	  },{
		src:  'images/slider/m1000x700/7.jpg',
		alt:  'DK foto 7',
		from: '80% 80% 1.4x',
		to:   '100% 100%',
		time: 9
	  }, {
		src:  'images/slider/m1000x700/8.jpg',
		alt:  'DK foto 8',
		from: '100% 50% 1.5x',
		to:   '100% 0% 1x',
		time: 6
	  }
	]);	
	
 });
 
 function checkWidth(){
 var CenterContainerY = ($("#foto_INNER").height() - $("#data_inner").height()) / 2;
	if(CenterContainerY>20)
		$("#data_inner").css("top",CenterContainerY);
	else	
		$("#data_inner").css("top","20px");
}
 function checkWidthAnimate(){
 var CenterContainerY = ($("#foto_INNER").height() - $("#data_inner").height()) / 2;
	if(CenterContainerY>20)
		$("#data_inner").animate({"top":CenterContainerY},500);
	else	
		$("#data_inner").animate({"top":20},500);
}
