$(document).ready(function() {
	$('.withsubmenu').mouseover(function(event) {
		event.stopPropagation();
		var deep = $(this).attr('deep');
		//var currId = Math.round(Math.random()*100);
		$('.yoursubmenu:visible').each(function() {
			if ($(this).attr('deep') >= deep) {
				$(this).hide().removeAttr('currId');
			}
		});
		$('.yoursubmenu', this).slice(0,1).show();
	});
	
	$('#category').mouseleave(function() {
		$('.yoursubmenu').hide();
	});
});
