
	$(document).ready(function() {
		$("#twitter").getTwitter({
			userName: "blowmedia",
			numTweets: 3,
			loaderText: "Loading tweets...",
			slideIn: true,
			slideDuration: 750,
			showHeading: false,
			headingText: "Latest Tweets",
			showProfileLink: true,
			showTimestamp: true
		});
	});
	
	$(document).ready(function() {
		$('#footerVisible').toggle(
		function() {
			$('#footerWrapper').animate({height:'393px'},400);
		},
		function() {
			$('#footerWrapper').animate({height:'48px'},400);
		});
	});
	
	
