// JavaScript Document
$(document).ready(function(){
						   
			// Tabs
			$('#tovary').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 5000);
			
			// for show after load page
			$("#tovary").show();
			
			// for last item of menutree
			$('.page-left ul li:last-child').addClass('last'); 
			
			$(".map-close").click(function(){
				$(this).fadeOut("slow");
			});
			
			// print
			//$(".page-print").toggle(
			 // function () {
			//	$('link[@title=printview]').removeAttr("disabled");
			//	$(this).html("<a href='#' style='background:none;'>Вернуться к стандартному виду</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;<a onClick='window.print()' href='#'>Напечатать страницу</a>");
			 // },
			 // function () {
			//	$('link[@title=printview]').attr("disabled","disabled");
			//	$(this).html("<a href='#print'>Версия для печати</a>");
			 // }
			//);
	
});
