$(function() {
	
	$('#menu .cat').bind('mouseup',function() {
		
		if($(this).next('ul').is(':hidden'))
		{
			$(this).next('ul').slideDown();
		}
		else {
			$(this).next('ul').slideUp();
		}
	});
	
	$('.orange-menu').parent().removeClass('hidden');
	
});
