$(document).ready(function(){

	$(window).resize(resize);
	resize();
	
});


function resize()
{
	if ($(window).width() <= 900)
	{
		$('.header .menu').css('display', 'none');
		
		$('.header .submenu').css({
			'background': 'none'
		});
		
		$('.main-content .bottom-blocks').css('display', 'none');
		$('.footer .rights, .footer .social').css('display', 'none');
		
		
		$('.content').css('padding-top', '0px');
	}	
	else
	{
		$('.header .menu').css('display', 'block');
		
		$('.header .submenu').css({
			'background': 'url("/resources/img/design/maguro/header/submenu-bg.png") no-repeat scroll 75px bottom transparent'
		});
		$('.main-content .bottom-blocks').css('display', 'block');
		$('.footer .rights, .footer .social').css('display', 'block');
		$('.content').css('padding-top', '127px');
	}
	
	if (($.browser.msie && $.browser.version == '9.0') || $.browser.opera)
	{
		if ($(window).width() > 1600)
		{
			$('.header-catch').css({
				'width': '100%'
			});
		}
		else
		{
			$('.header-catch').css({
				'width': 'normal'
			});
		}
	}
}

