/*Tip*/
//Конфирм
function clicker(lnk, msg){
if(confirm(msg)) window.location.href=lnk.href;
return false;		}

//Переключить блок
function swichblock(id) 
{
	if (document.getElementById(id).style.display == 'none') {
	document.getElementById(id).style.display = 'block';
	}
	else {
	document.getElementById(id).style.display = 'none';
	}
}

//Показать блок
function openblock(id) 
{
	document.getElementById(id).style.display = 'block';
}

//Скрыть блока
function hideblock(id) 
{
	document.getElementById(id).style.display = 'none';
}
/*Tip*/




$(document).ready(function(){
	//Кнопки навигации при наведении
    $("div.head_nav_but").hover(function() {
        $(this).animate({height: "104px"}, 150);
    }, function() {
        $(this).animate({height: "86px"}, 50);
    });
	
	//Галерея
	$("a[rel=img_group]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Изображение ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
});

/*FAQ*/
$(document).ready(function(){

		
	$(".faq_list_title").click(function(){
		$(this).next(".faq_list_text").slideToggle(300);
		$(this).toggleClass("faq_list_title_active");
	});
	 
});
/*FAQ*/
