$(function(){

	/* фиксим outline для a.lefta */
	$('a.lefta').outlinefix();
	
	/* фиксим outline для a.righta */
	$('a.righta').outlinefix();
	
	/* фиксим outline для .logo a */
	$('.logo a').outlinefix();
	
	/* анимация кнопок левого меню при наведении на пункт */
	$('a.righta').each(function() {
		$(this).hover(function() {
			$(this).parentn(2).find("td:first a.lefta").css("background-position", "0 -59px");
		},
		function() {
			$(this).parentn(2).find("td:first a.lefta").css("background-position", "0 0");
		});
	});
	
	$('a.lefta').each(function() {
		$(this).hover(function() {
			$(this).css("background-position", "0 -59px");
		},
		function() {
			$(this).css("background-position", "0 0");
		});
	});
	
	/* раздвижение пунктов меню */
	$("a.righta").click(function(){
		$('ul.left-small-menu').each(function(){
			$(this).hide("fast");
		});
		
		$("#left-news").hide();
		
		$(this).parentn(3).find("ul.left-small-menu").stop().toggle("fast");
		
		return false;
	});
	
	$("a.lefta").click(function(){
		$('ul.left-small-menu').each(function(){
			$(this).hide("fast");
		});
		
		$("#left-news").hide();
		
		$(this).parentn(3).find("ul.left-small-menu").stop().toggle("fast");
		
		return false;
	});
	
	$('a[href$=.jpg]').each(function(){
		if($(this).attr('title').length < 1)
			$(this).attr('title', 'галерея');
		$(this).attr('rel', 'gallery');
		$(this).fancybox();
	});
});
