
$(document).ready(function(){



$(".href").mouseover(function(){
	$('.li').find('.rcat_child_categories').hide();
	
		$("#"+this.rel).show();
		
		$('.li').find('.cur').removeClass("cur");
			$(this).addClass("cur");
		})

$(".li").mouseleave(function(){
	$(this).find('.rcat_child_categories').hide();
})
		
$(".b-tabs__head A").click(function(){
		if (!$(this).parent().hasClass("cur")) {
			
			$(this).parent().addClass("cur").siblings().removeClass("cur")
			$('.bg').find(".b-tabs__i").hide()
			$("#"+this.href.split("#")[1]).show()
			
			}
		return false
		})
		

	
		
});
	





