$(document).ready(function() {
	
	// block hover	
	$('.block').hover( function () {    		$(this).find('.hoverblock').not('.show').css({ display: 'block', opacity: 0 }).animate({ opacity: 0.9 }, 100, function() {
    			$(this).addClass('show');
    		});  		}, function () {    		$(this).find('.show').fadeOut(200, function() {
    			$(this).removeClass('show');
    		});  		}	);
	
	// trim list
	/*var item = $('#newsfeedlist li').text();
	var itemlng = item.length;	
	if(itemlng > 10) {
		$('#newsfeedlist li').append('...');
	}*/
	
	// innerfade
	/*
	$('#newsfeedlist').innerfade({ 
		speed: 800, 
		timeout: 5000, 
		type: 'sequence', 
		containerheight: '36px'
	});
	*/
	
	$("#tweet").tweet({
		username: ["stearnscoffee"],
		join_text: "auto",
		count: 1,
		auto_join_text_default: "we said,",
		auto_join_text_ed: "we",
		auto_join_text_ing: "we were",
		auto_join_text_reply: "we replied to",
		auto_join_text_url: "we were checking out",
		loading_text: "loading tweets..."
	});
	
	
});