$(document).ready(function() {
	getTwitters('tweets', {
		id: 'NotAboutMeRec',
		count: 5,
		enableLinks: true,
		ignoreReplies: false,
		clearContents: false,
		template: '"%text%" <a href="http://twitter.com/%user_screen_name%/statuses/%id_str%/">%time%</a>'

	});

	autoWidth("footer ul");
});

function autoWidth(obj_id)
{
	var obj = $('#' + obj_id),
		space = $(obj).width(),
		width = 0,
		add;

	$(obj).children().each(function() {
		width += $(this).width();
	});

	add = (space - width) / $(obj).children().length;

	$(obj).children().each(function() {
		$(this).css('width', function() {
			return $(this).width() + add;
		});
	});
}

