jQuery(function(){
	$("li.hor_menu-parent").hover(function(){
		$(this).children("ul").animate({
		    opacity: 'toggle',
		    height: 'toggle',
			width: 'toggle'
		  }, {
		    duration: 300,
		    specialEasing: {
		      opacity: 'linear',
		      height: 'swing',
		      width: 'swing'
		    }
		  });
		return false;
	});
});
