/**
 * @author felipe
 */

(function() {
	var $ = jQuery;
	
	$(document).ready(function() {
		$('.cat-menu').each(function() {
			if ($(this).attr('rel') == zc_path) {
				$(this).next().slideUp(0);
				$(this).next().slideDown('fast');
			}
			else {
				$(this).next().slideUp(0);
				$(this).data('up', true);
			}
			$(this).click(function(e) {
				if (e.originalTarget == e.currentTarget) {
					$(this).next().slideToggle('fast');
					$(this).data('up', !$(this).data('up'));
				}
			});
		});
	});
})();
