function expand_menu() {	
	var width = $(this).css('width');
	width = parseInt(width);
	var the_ul = $(this).find('ul');
	var the_lis = $(this).find('li');
	var size = $(the_lis).length*2.55 + 'em';
	$(the_ul).show();
	$(the_ul).animate({"height": size}, 150);
}

function collapse_menu() {
	var the_ul = $(this).find('ul');
	$(the_ul).animate({"height":0}, 50);
	$(the_ul).hide();
}
