$(document).ready(function(){
	$(".open_link").click(function(){
		$(this).siblings(".more").slideToggle("slow");
		$(this).toggleClass("open");
		if ($(this).hasClass('open'))
				$(this).find("a").html('Скрыть...');
			else
				$(this).find("a").html('Подробнее...');
	});
	$('a.lightbox').lightBox();
	$(".fancybox").fancybox();
});
