		$(document).ready(function(){
			var h = $(window).height() - 200 - $('#footer').height();
			$('#left').height($('#left').height() + 15);
			if( h<$('#left').height() ){
				h = $('#left').height();
			}
			if( h<$('#banners').height() ){
				h = $('#banners').height();
			}
			//var ch = $('#content').height();
			$('#content').css(($.browser.msie && $.browser.version < 7 ? '' : 'min-') + 'height', h + 'px'); 
			$('#banners').css("height", $('#content').height());
			
			if($('#visasturinys').height() < h && $('#botbanners')){
				//var botbanners = $('#botbanners').height() + 16;
				var cont = $('#content').height() - $('#visasturinys').height();
				//console.log(cont);			
				//console.log(botbanners + " " + cont + " " + $('#content').height());
				//var mar = $('#content').height() - botbanners - cont;
				//console.log($('#content').height() - botbanners - cont);
				$('#botbanners').css({"margin-top": cont + "px"});
			}
			
		$('ul#nav > li').hover(function() {
			$('ul:first', this).show();
		  },
		  function() {
			$('ul:first', this).hide();
		  });

		  $('ul#nav li li').hover(function() {
			$('ul:first', this).each(function() {
			  $(this).css('top', $(this).parent().position().top );
			  $(this).css('left', $(this).parent().position().left + $(this).parent().width() );
			  $(this).show();
			});
		  },
		  function() {
			$('ul:first', this).hide();
		  });
		});
