$(function() {
	$("#menu-top .menu-item").mouseover(function(){
		$(this).addClass("current");
	});
	$("#menu-top .menu-item").mouseout(function(){
		$(this).removeClass("current");
	});
	if($("#mainContent").height()+240 < $(window).height() && $("#sidebar1").height()+240 < $(window).height() && $("#searchcontrol").height()==null){
		//alert($("#mainContent").height());
		//alert($("#sidebar1").height());
		//alert($(window).height());
		$("#footer").css("bottom", "0px");
		$('#container').height($(window).height()+1);
	}
	$(window).resize(function(){
	if($("#mainContent").height()+240 < $(window).height() && $("#sidebar1").height()+240 < $(window).height() && $("#searchcontrol").height()==null){
		//alert($("#mainContent").height());
		//alert($("#sidebar1").height());
		//alert($(window).height());
		$("#footer").css("bottom", "0px");
	}	
	});
	
});

function googleSearch(){
	var q = $("#googleQuery").val();
	window.open("http://www.google.ru/search?hl=ru&q="+q);
}


