


jQuery(document).ready(function($){
	$(".side-arrow").click(function() {
		$(this).parent().toggleClass( "opened" ).slideDown("slow");
		$(this).toggleClass( "opened" );
	});
});

jQuery(document).ready(function($){
	$("#burger").click(function() {
		$(this).toggleClass("opened");
		$(".brgrd").toggleClass("opened").slideDown("slow");
	});
});


jQuery(document).ready(function($){
	$(".burger-icon").click(function() {
		$(this).toggleClass("opened");
		$("#woocommerce_product_categories-2").toggleClass("hide-md");
		$("#woocommerce_product_categories-2").toggleClass("opened").slideDown("slow");
	});
});

jQuery(document).ready(function() {
    if (window.location.href.indexOf("orderby=price-asc") > -1) {
      $('#filtered-price').removeAttr("href").toggleClass( "active" );
    }
    if (window.location.href.indexOf("orderby=popularity") > -1) {
      $('#filtered-pop').removeAttr("href").toggleClass( "active" );
    }
});

jQuery(document).ready(function() {
	$(this).children('a').addClass('hover_triangle');
	$('.current-cat-ancestor').children('ul.children').show();
});