﻿function gallerySlider(images){
var animGallery = '';
	animGallery += '<ul>';
	for(var a=0; a<images.list.length; a++){
		animGallery += '<li style=""><img src="'+images.list[a].src+'" alt="" onclick="galleryAnim.showImage(\''+images.list[a].src+'\');" /></li>';
	}
	animGallery += '</ul>';
	$('#gallery_image_slider').html(animGallery);
}
var galleryAnim = {
	slideImageLeft:function(){//animacja w lewo
		var productWidth = $('#gallery_image_slider ul').innerWidth()-$('#gallery_image_slider').outerWidth();
		$('.image ul').animate(
			{
				left: '-'+productWidth+'px'
			},5500
		);
	},
	slideImageRight:function(){//animacja w prawo
		$('.image ul').animate(
			{
				left: '0px'
			},5500
		);
	},
	stopAnime:function(){
		$('.image ul').stop();
	},
	showImage:function(imgSrc){//popup z obrazkiem
		$('#big_image').hide();
		var imageOut = '';
		imageOut += '<div class="big_image_show">';
			imageOut += '<img src="'+imgSrc+'" alt="" />';
			imageOut += '<div id="close_big_image">Zamknij X</div>';
		imageOut += '</div>';
		$('#big_image').html(imageOut);
		//$('#big_image').draggable();
		$('#big_image').slideDown('slow');
		$('#close_big_image').click(
			function(){
				$('#big_image').hide('slow');
			}
		);
	}
}
