$(function () {
 var tabContainers = $('#tab1, #tab2, #tab3');
 tabContainers.hide().filter(':first').show();
 
 $('.center_nav li.novinki a').click(function () {
 tabContainers.hide();
 tabContainers.filter(this.hash).fadeIn(500);
 $('.center_nav li.popular').removeClass('active_popular');
 $('.center_nav li.skidki').removeClass('active_skidki');
 $('.center_nav li.novinki').addClass('active_novinki');
 return false;
 }).filter(':first').click();
 
 $('.center_nav li.skidki a').click(function () {
 tabContainers.hide();
 tabContainers.filter(this.hash).fadeIn(500);
 $('.center_nav li.novinki').removeClass('active_novinki');
 $('.center_nav li.popular').removeClass('active_popular');
 $('.center_nav li.skidki').addClass('active_skidki');
 return false;
 }).filter(':first').click();
 
 $('.center_nav li.popular a').click(function () {
 tabContainers.hide();
 tabContainers.filter(this.hash).fadeIn(500);
 $('.center_nav li.skidki').removeClass('active_skidki');
 $('.center_nav li.novinki').removeClass('active_novinki');
 $('.center_nav li.popular').addClass('active_popular');
 return false;
 }).filter(':first').click();
}); 

function updateFontSize () {
		//var jPage = $(document);
		//var jPopup = $('#popup');
		var jPhone = $('#popup').find('.content .phone');
		var iFontSize = Math.round($(document).width() / 15) + "px";
		jPhone.css("fontSize", iFontSize);
}
$(function () {
	updateFontSize ();
	$('#showpopup').click(function() {
		//$('#popup, #fade').fadeIn(500);
		$('#popup').css("display", "block").animate({opacity: 1});
		$('#fade').css("display", "block").animate({opacity: 0.4});
		return false;
	});
	$('#popup .close').click(function() {
		$('#popup, #fade').animate({opacity: 0}, function(){ $(this).css("display", "none")});
	});
});
