
$(document).ready(function() {

	$('a.lightbox-galleria').fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});
	
	
	
	$('.news-item-image-text').css('top', '215px');
	/*
	$('.news-item-image-text').animate({
	  top: 175
	});
	*/
	
	
	$(".news-item-image").hover(
		function() {
			$('.news-item-image-text', this).animate({
				top: 175
			})
		},
		function() {
			$('.news-item-image-text', this).animate({
				top: 215
			})
		}
	);


});
