		$(document).ready(function(){	
			var href = document.location.href;
			$('ul.menu-nav').find('li').each(function(){
				$(this).removeClass('active');
			});	
			$('ul.menu-nav').find('a').each(function(){
				var link = $(this).attr('href');
				if (href == 'http://odezhda-opt.ru'+link) {$(this).parent().addClass('active');}
			});		
		});	
