$(document).ready(function() {
	var heightWindow = $(window).height();
	var heightBody = $('body').height();
	var height;
	//alert('window: ' + height + '\nbody: ' + heightBody);
	if (heightWindow > heightBody) {
		height = heightWindow;
	}
	else {
		height = heightBody;
	}
	var newHeight = height - 11 - 123 - 64;
	var heightRightBlockImg = newHeight - 161;
	$('#middle, #middle_padding, #middle_block, #left , #right, #content').css('min-height', newHeight + 'px');
	$('#right_block').css('min-height', heightRightBlockImg + 'px');
	
	$('#menu_top table tr td:first .menu_top_noactive div').css('background', 'url(/images/top_menu/left_ugol.jpg) no-repeat top left');
	$('#menu_top table tr td:first .menu_top_noactive div div').css('background', 'url(/images/top_menu/right.jpg) no-repeat top right');
	$('#menu_top table tr td:first .menu_top_active div').css('background', 'url(/images/top_menu/left_active_ugol.jpg) no-repeat top left');
	$('#menu_top table tr td:first .menu_top_active div div').css('background', 'url(/images/top_menu/right_active.jpg) no-repeat top right');
	
	$('#menu_top table tr td:last .menu_top_noactive div div').css('background', 'url(/images/top_menu/right_ugol.jpg) no-repeat top right');
	$('#menu_top table tr td:last .menu_top_active div div').css('background', 'url(/images/top_menu/right_active_ugol.jpg) no-repeat top right');
	
	$(window).resize(function() {
		$('#middle, #middle_padding, #middle_block, #left , #right, #content').css('min-height', '0px');
		$('#right_block').css('min-height', '0px');
		var heightWindow = $(window).height();
		var heightBody = $('body').height();
		var height;
		if (heightWindow > heightBody) {
			height = heightWindow;
		}
		else {
			height = heightBody;
		}
		var newHeight = height - 11 - 123 - 64;
		var heightRightBlockImg = newHeight - 161;
		$('#middle, #middle_padding, #middle_block, #left , #right, #content').css('min-height', newHeight + 'px');
		$('#right_block').css('min-height', heightRightBlockImg + 'px');
	});
	
	overMenuTop = function() {
		$(this).unbind('mouseover');
		$(this).children('.spisok_top').show();
		$(this).bind('mouseout', outMenuTop);
	}
	
	outMenuTop = function() {
		$(this).unbind('mouseout');
		$(this).children('.spisok_top').hide();
		$(this).bind('mouseover', overMenuTop);
	}
	
	$('.menu_top_pos').bind('mouseover', overMenuTop);
	$('.menu_top_pos').click(function() {
		$(this).children('.spisok_top').hide();
	});
	
	
//jQuery(document.body).imageZoom();
	
	
	
	
	
	//popup картинок
	$("a[rel=popup]").fancybox({
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Фотография ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});
	
	
	
});

