$(function() {
	$('a#read-more').click(function() {
		$('#info-all').slideDown('slow');
	});
	
		
	$('a').hover(function() {
		$(this).stop().animate({ "opacity" : 1 });
	}, function() {
		$(this).stop().animate({ "opacity" : 0.75 });
	});
	
	$('div#twitter-box').hover(function() {
		$('div#twitter-box #my_twitter_status_time').show('slow');
	});
});