$(function() {
	$(".avia_uslugi h3 a").click(function() {
		$(".avia_uslugi h3").each(function() {
			$(this).next().hide();
			$(this).css("color", "");
			$("a", this).css("color", "");
		});
		$(this).parent().next().show();
		$(this).parent().css("color", "#EA7535");
		$(this).css("color", "#EA7535");
		return false;
	});
	
	$('img.lightbox').each(function() {
		$(this).wrap("<a></a>");
		$(this).parent().attr("href", $(this).attr("src"));
		$(this).parent().attr("class", "a_lightbox");
	});
	$('a.a_lightbox').lightBox();
	
	$('a.a_brief').click(function() {
		$(this).parent().next().fadeIn('slow');
		return false;
	});
});





