// toggle items and categories
$(document).ready(function(){$(".item_body").hide();$(".item_head").click(function(){$(".item_body").hide();$(".item_head").show();$(this).prev(".item_body").slideToggle(300);$(this).hide();});});$(document).ready(function(){$(".ctgy_body").hide();$(".ctgy_head").click(function(){$(".ctgy_body").hide();$(".ctgy_head").show();$(this).prev(".ctgy_body").slideToggle(300);$(this).hide();});});

// popups
$(function(){
	initPopups();
});
function initPopups(){
	var _holder = $('.popup-holder');
	_holder.each(function(){
		var _this = $(this);
		var _popup = _this.find('.popup');
		var _parent = _this.parents('.box');
		_this.mouseenter(function(){
			_this.addClass('popup-active');
			_parent.css({zIndex:950});
		}).mouseleave(function(){
			_this.removeClass('popup-active');
			_parent.css({zIndex:1});
		});
	});
}
