$(document).ready(function() {
	$('.lightbox, .gallery a').lightBox({fixedNavigation:false});

 Galleria.loadTheme('/galleria/themes/classic/galleria.classic.min.js');
	$("#gallerySlider").galleria({
		width: 780,
		height: 600,
		transition: "fade",
		transitionSpeed:200,
		imagePan: false,
		imageCrop: false,
		thumbCrop: "height",
		easing: "galleriaOut"
	});	




	$('.galleryAccordion img').hover(
		function(){
			$(this).css('opacity','0.7');
		},
		function(){
			$(this).css('opacity','1');
		});


// ustawianie margin-top dla opisów galerii
                $('.imgContainer .imgDescription').each(function() {
                    if($.browser.msie){
                        var mTop = parseInt($(this).height()+10)*-1;
                    }else{
                        var mTop = parseInt($(this).height()+15)*-1;
                    }
                    $(this).css('margin-top',mTop+'px')
                })
                $('.imgContainer').find('.imgDescription').hide();	
                $('.imgContainer').hover(
                function(){
                    $(this).find('.imgDescription').fadeIn()
                },
                function(){
                    $(this).find('.imgDescription').fadeOut()
                } 
            )








});


$(window).load(function() {
	$('.flexslider').flexslider({
		//directionNav: false
		});
		
		
$( ".galleryAccordion" ).accordion({
			icons: true,
			autoHeight: false
		}); 
});
