jQuery('#nav > li > a').each(function(){ 
	jQuery(this).find('span').wrapInner('<span />');
	var indent_container = jQuery(this).find('span span');
	var top_indent = (jQuery(this).height() - indent_container.height())/2;
	indent_container.css("padding-top", top_indent); 
});
