$(function() {

		$('#tabsIndex ul li a').click(function(){
			var li = $(this).parents('li');
			if(li.hasClass('active'))
				{
					return false;
				}
			else{
					$('#tabsIndex ul li').each(function(){
						$(this).removeClass('active');
					});
					
					li.addClass('active');
					var href = ($(this).attr("href"));
					
					$('#doma, #ychastki').hide();
					$(href).show();
				
					return false;
				}

		});
		
		
		
		$('.show-sub-cottage-category').toggle(function(){
			$(this).next('ul.sub-cat').slideDown('fast');
		}, function(){
			$(this).next('ul.sub-cat').slideUp('fast');
		});
		

		$('#house-plain div a').lightBox({fixedNavigation:true});

		
		
		
		
		
		
		
		
	});
