$(document).ready(function(){
	$.bgswitcher({
		img_path: '/resources/scripts/themes/frameworks/jquery/bgswitcher/img/',
		slides: [		//Slideshow Images
			{image : '/resources/img/design/maguro/bg/with_price/001.jpg', id: 76},  
			{image : '/resources/img/design/maguro/bg/with_price/002.jpg', id: 69},  
			{image : '/resources/img/design/maguro/bg/with_price/003.jpg', id: 103},  
			{image : '/resources/img/design/maguro/bg/with_price/004.jpg', id: 62},  
			{image : '/resources/img/design/maguro/bg/with_price/005.jpg', id: 47},  
			{image : '/resources/img/design/maguro/bg/with_price/006.jpg', id: 75}
		],
	});
	
	$('.tabs').mytabs();
	
	//setInterval(change_phone, 10000);
	
	$(window).resize(resize);
	resize();
	
});

function change_phone()
{
	
	$('.phone-federal1:visible').fadeOut('slow', function(){
		$('.phone-federal2').fadeIn('slow');
	});
		
	$('.phone-federal2:visible').fadeOut('slow', function(){
		$('.phone-federal1').fadeIn('slow');
	});
	
}

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');
	}
	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');
	}
	
	if (($.browser.msie && $.browser.version == '9.0') || $.browser.opera)
	{
		if ($(window).width() > 1600)
		{
			$('.header-catch').css({
				'width': '100%'
			});
		}
		else
		{
			$('.header-catch').css({
				'width': 'normal'
			});
		}
	}
}

