/*
Author: Joe Tan (joetan54@gmail.com)
*/

jQuery(function($) {
	$('#notepad .beat-posts:last').addClass('post-last')
});

jQuery(function($) {
	$('#notepad .beat-posts:first').show();
	setTimeout(rotateFeatures, 5000);
});

function rotateFeatures() {
	showNextFeature();
	setTimeout(rotateFeatures, 5000);
}
function showNextFeature() {
	var $ = jQuery;
	
	var current = $('#notepad .beat-posts:visible');
	var next = current.next();
	if (next.length <= 0) next = $('#notepad .beat-posts:first');
	
	current.hide();
	next.show();
}