jQuery(function ($) {
	$(document).ready(function(){
		//adjusts styling of last column in footer menu to fit it on one line
		$('.footernav ul li:last-child').not('.footernav ul ul li').css('margin-right',0);
		$('.footernav ul li:last-child').not('.footernav ul ul li').css('width', '100px');
		//$('.footernav ul li:last-child').not('.footernav ul ul li').css('float', 'right');
		
		//inserts initial HTML for "Newest on Twitter" column in footer menu
		$('#menu-footer-navigation').prepend('<li id="twitter-container"><a href="http://twitter.com/abetterworld12">Newest on Twitter</a><ul id="twitter_update_list" class="sub-menu"><li class="menu-item">&nbsp;</li></ul></li>');
		
		//Generates Twitter Feed via blogger.js (live on Twitter CDN) Javascript. See http://www.kristarella.com/2009/01/display-your-tweets-without-a-plugin/ for instructions
		$.getScript('http://twitter.com/javascripts/blogger.js');
		$.getScript('http://twitter.com/statuses/user_timeline/abetterworld12.json?callback=twitterCallback2&count=1');
	});
});
