jQuery(function($) {
	$('.dropdown ul').each(function() {
		var offset = 0;
		var ul = $(this);
		ul.show();
		ul.children().each(function() {
			var t = $(this);
			offset += t.height();
			if (!t.children('a').size()) {
				ul.css('margin-top', -offset+parseInt(ul.css('margin-bottom'))-parseInt(ul.css('padding-top'))+'px');
			}
		});
		ul.hide();
	});
    $('.dropdown .current').click(function(e) {
		e.preventDefault();
		e.stopPropagation();
		$(document).find('.dropdown ul').stop(true,true).fadeOut();
		$(this).parent('.dropdown').find('ul').stop(true,true).fadeIn();
    });
    $('body').click(function(e) {
		$('.dropdown ul').stop(true,true).fadeOut();
    });
    $('.dropdown ul a').click(function(e) {
		e.stopPropagation();
    });
});  
