$(document).ready(function(){
	$('#gallery a').lightBox();
	$('#nav li.parent').hover(function(){
		$(this).children('.left-bord').show();
	},
	function(){
		$(this).children('.left-bord').hide();
	});
	$('li.child_parent').hover(function(){
		$(this).children('.left-bord-child').show();
	},
	function(){
		$(this).children('.left-bord-child').hide();
	});
	
	$('.what').mouseover(function(){
		$(this).children('span').show();
	 });
	 $('.what').mouseout(function(){
		 $('.what span').hide();
	 });
	 
	/*$('#nav li.parent').hover(function(){
		if ($.browser.msie) {
			var size = $(this).children('.left-bord').children('ul').children('li').size() * 37 + 17;
		}else{
			var size = $(this).children('.left-bord').children('ul').children('li').size() * 37 + 23;
		}
		$(this).children('.left-bord').css('overflow', 'visible');
		$(this).children('.left-bord').animate( { height: size + 'px', opacity: '1'}, 300 );
	},
	function(){
		$(this).children('.left-bord').css('overflow', 'hidden');
		$(this).children('.left-bord').animate( { height:'0px', opacity: '0'}, 300 );
	});
	$('li.child_parent').hover(function(){
		if ($.browser.msie) {
			var size = $(this).children('.left-bord-child').children('ul').children('li').size()*37 + 4;
		}else{
			var size = $(this).children('.left-bord-child').children('ul').children('li').size()*37 + 17;
		}
		$(this).children('.left-bord-child').animate( { height: size + 'px', opacity: '1'}, 300 );
	},
	function(){
		$(this).children('.left-bord-child').animate( { height:'0px', opacity: '0'}, 300 );
	});*/
});

