jQuery Dropdown Help?

Hopeful one this, but can anyone point me in the direction of a tutorial that will help me achieve this dropdown?

That one is just a list of links i’d need mine to work with an li list as its being used with Wordpress.

Anyone point me in a direction to help me out?

Many thanks :slight_smile:

This is what they used…

$(function(){
	$('.menu-list').hide();
	$('.menu-td').hover(
		function () {
			var target = $(this).children('div');
			$.browser.msie ? target.show() : target.slideDown(150);
		},
		function () {
			var target = $(this).children('div')
			$.browser.msie ? target.hide() : target.slideUp(150);
		}
	);
});

Thanks nim.

I didn’t just want to steal that though and thought i could use a tutorial or something to help me learn a bit as well…