$(document).ready(function() { var totwidth = 0; $('#topnav div a').each(function(index) { totwidth += $(this).width(); } ) $('#topnav div a:gt(0)').css( { 'margin-left':Math.floor((960-totwidth)/($('#topnav div a').length-1))+'px' } ); var totfooterwidth = 0; $('#footer div p:not(.address)').each(function(index) { totfooterwidth += $(this).width(); } ) $('#footer div p:not(.address):gt(0)').css( { 'margin-left':Math.floor((550-totfooterwidth)/($('#footer div p:not(.address)').length-1))+'px' } ); } );