$(document).ready(function() {
	
	// block hover	
	$('.block').hover( function () {    		$(this).find('.hoverblock').addClass('show');  		}, function () {    		$(this).find('.hoverblock').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'
	});
});