$(document).ready(function(){
	$('ul.list_col li').bind('click',function(){
	 
		if($(this).children('ul').hasClass('act')){
			$(this).children('ul').hide().removeClass('act');
			setCookie("id_razd",-5);
		} else {
			if($('ul.list_col li ul.act').size() !=0){
				$('ul.list_col li ul.act').hide().removeClass('act');
				$(this).children('ul').show().addClass('act');
			} else {
				$(this).children('ul').show().addClass('act');
			}
			setCookie("id_razd",$(this).attr('id'));
		}
		
		$('.scroll-pane').jScrollPane({
			 showArrows:true, 
			 scrollbarWidth:19,
			 dragMaxHeight:47,
			 renitialiseOnImageLoad:true  
		});
		
		
	})

	if(id = getCookie("id_razd")){
		$('#'+id).trigger('click');
	} 

	var w = $(window);
	var p_h = $('.page').height();
	if(w.height() > p_h){$('.page').css("margin-top",((w.height()-p_h)/2-20)+'px')}
	w.bind('resize',function(){
		if(w.height() > p_h){
			$('.page').css("margin-top",((w.height()-p_h)/2-20)+'px');
		}		
	})
	
	$("a[rel = 'fancy'],a[rel='fancy-tour']").fancybox({
		'overlayOpacity'	:	0.7,
		'overlayColor'		:	'#000'
	})
});
function make_scroll(){
	$('.scroll-pane').jScrollPane(
		{
		 showArrows:true, 
		 scrollbarWidth:19,
		 dragMaxHeight:47,
		 renitialiseOnImageLoad:true  
		}
	);
	
	$('.answer').css('display','none');
}



