$(document).ready(function() {
	//Custom code to distribute the nav-top links evenly and apply divider image
	var links = '#nav-top li';
	var container = '#nav-top';
	var containerWidth = $(container).width();
	var listWidth = 0;
	$(links).each( function () {
		listWidth = listWidth + $(this).outerWidth(); 
	} );
	var distance = containerWidth - listWidth - 5;
	i = 0;
	$(links).each( function () {
		var oneDistance = Math.floor( distance/($(links).length - i) );
		$(this).children('a').css("padding-left", Math.floor( oneDistance/2 ));
		$(this).children('a').css("padding-right", Math.floor( oneDistance/2 ));
		distance = distance - oneDistance;
		i++;
		} );
});
