
function switchVisibility(obj)
{
	if (obj.style.display == 'none')
		obj.style.display = 'block';
	else
		obj.style.display = 'none';
}

$(document).ready(
function()
{
	$('#printcss').click(function(){
		$("#maincss").attr("href", "/css/print.css");
		return false;
	});

	$('.popup_container').hover(function(){
		$(this).find('.popup_block').fadeIn(300);

		if ($.browser.msie && $.browser.version=='7.0') 
			$('.under_popup_img').fadeOut(200);
		else
			$('.under_popup_img').addClass('semi_transparent');		
	});	

	$('.popup_block').mouseleave(function(){
		$(this).fadeOut(200);

		if ($.browser.msie && $.browser.version=='7.0') 
			$('.under_popup_img').fadeIn(200);
		else
			$('.under_popup_img').removeClass('semi_transparent');		
	});	

	$("#header_container").pngFix(); 
	//$(".box_nowrap").ellipsis(); //ellipsis(true) update with window resize
	//$(".box_nowrap").ThreeDots(); // не сработало. видимо надо не на бокс, а на саму надпись вешать

});
