jQuery(document).ready(function(){
	jQuery('.menu ul li span.fold').mousemove(function(){
			el_width = jQuery(this).width();
			el_height = jQuery(this).height();
			el_pos = jQuery(this).position();
			obj = jQuery(this).parent('li').children('span').not('span.fold').children('ul');
			jQuery('.menu ul li span ul').not(obj).css('display','none');
			jQuery(obj).css({
				'display': 'block',
				'left' : (el_pos.left+el_width) + 20 + 'px',
				'top' : (el_pos.top) + 'px'
				}).stop(true,true).animate({
				opacity: 1
				},1000);
		});
	
	jQuery('.menu ul').mouseleave(function(){
		jQuery('.menu ul li span ul').stop(true,true).animate({
				opacity: 0
				},1000,function(){
					jQuery(this).css('display','none');
					});
		});
	
	});
