// nav animation
$(function() {
	$('li.expanded').each(function() {
		$(this).find('li').hide();
		$(this).animate({"paddingTop": "-=45px"}, "normal", function() {
//			$(this).find('li').show('fast');
			$(this).find('li').fadeIn();
		});
		
	});
});