$(document).ready(function() {
	$('.menuItem').hover(
		function () { $(this).animate({opacity: 0.4, paddingTop: '2px'}, 160) }, 
		function () { $(this).animate({opacity: 1, paddingTop: '0px'},160) }
	);


	$('#rssIcon').hover(
		function () { $('#rssBubble').show() }, 
		function () { $('#rssBubble').hide() }
	);
	
	$('#twitterIcon').hover(
		function () { $('#twitterBubble').show() }, 
		function () { $('#twitterBubble').hide() }
	);
});
