$(function() {
	$('.mc_menu li').hover(function(){
		$(this).addClass('hover');
	}, function(){
		$(this).removeClass('hover');
	});	
	$('#mc_menu_1 li').each(function() {
		if(!$(this).next('li').length) {
			$(this).addClass('last');
			
			
		}
			
	});
	$('.bottomblock>ul>li>a').click(function(){
		$(this).parent().children('ul').slideToggle();
		$(this).parent().toggleClass('hover');
		return false;
	});
	$('.mc_menu li a').each(function() {
		if(this.href == window.location.href) {
				$(this).parent('li').addClass('current');
			}
		
		
	});
	$('.mc_menu_item a').each(function(){
		if(this.href == window.location.href) {
			$(this).parent('li').parent('ul').parent('li').parent('ul').parent('li').addClass('current');
			
		}
		
	});
	$('.mc_menu_item a').each(function(){
		if(this.href == window.location.href) {
			$(this).parent('li').parent('ul').parent('li').addClass('current');
			
		}
		
	});
	$('#mc_menu_1>li>a').each(function() {
		$(this).addClass('current');
	});
	var pathname = window.location.pathname;
	if(pathname=="/product-detail"){
		$('#menu_item_22').addClass('current');
	}
});