$(document).ready(function() {

	$("#menu-top li").mouseover(function(){
		$("ul", this).show();
	}).mouseout(function(){
		$("ul", this).hide();
	});

	/* External links */
	var extLinks = $('a._blank');
	var href = extLinks.attr('href');
	extLinks.after('&nbsp;<a href="' + href + '" title="Открыть в новом окне"><img src="http://stat-img.aladdin.ru/www/images/template05/icon-external-small.gif" alt="В новом окне" /></a>')
		.click(function(){
			window.open(this.href);
			return false;
		});

	positionFooter();
	
	function positionFooter() {
		//alert($("html").height() +','+ $("body").height()+','+$(window).height());
		if($("#wrapper").height() < $(window).height()){
			colmashHeight = $(window).height() - $("#footer").height() - $("#header").height();
			$('#colmask').css('height', colmashHeight + "px");
		}
	}
	
	$(window)
	.resize(positionFooter)

	/* Для совместимости со старыми страницами */
	$("td[background='/images/standard/bg_13.gif']").css({'height':'1px','font-size':'1px'});
});