$(function() {

    $('#gal_list').jcarousel( {
		scroll: 3,
     });
	
	$('#gal_list a').click(function(event) { 

		event.preventDefault();
		var podm = $(this).attr('href');
		var opis = $(this).children().attr('alt');
		var tytul = $(this).children().attr('title');
		$('.gal_pic').fadeOut( function () {
				$('#gal_img').attr('src', podm);
				$('#picdescr').html(opis); 
				$('#pictitle').html(tytul);
			});
		
		$('.gal_pic').fadeIn( 2000, 'linear' );
		 
	} );

	
});

