$(function(){
	$('#circles img').css({ opacity : 0.5 });
	
	$('#circles li').hover(function(){
		$(this).find('img').stop().animate({ opacity : 1 }, 300);		
	}, function(){
		$(this).find('img').stop().animate({ opacity : 0.5 }, 300);
	});
	
	var gallery = $('#gallery').add('.gallery');
	
	if (gallery.size() > 0) {
		$('a', gallery).lightBox({
			txtImage: 'Изображение',
			txtOf: 'из'
		});		
	}
})
