$(document).ready(function(){
	$('.showtweets').toggle(
		function () {
			var thisCont = $(this).parent('div');
			thisCont.find('.moretweets').show('fast');
			thisCont.find('.twitterfeed-tweet:eq(2)').attr('class', 'twitterfeed-tweet');
			$(this).find('a').html('less');
			return false;
		},
		function () {
			var thisCont = $(this).parent('div');
			thisCont.find('.moretweets').hide('fast');
			thisCont.find('.twitterfeed-tweet:eq(2)').attr('class', 'twitterfeed-tweet lasttweet');
			$(this).find('a').html('more');
			return false;
		}
	);
	$('#toolbar-toggle').toggle(
		function () {
			$('#toolbar').slideDown('fast');
			$(this).text('close settings');
			return false;
		},
		function () {
			$('#toolbar').slideUp('fast');
			$(this).text('click here to change your settings');
			return false;
		}
	);
});