var $awards = $('#libra li');
theActionIndex = 0;
theLength = $awards.length;
$('#libra .featprod-next a').click(function() {
	$awards[theActionIndex].style.display = 'none';
	if(theActionIndex < theLength-1) {		
		theActionIndex++;
	} else {
		theActionIndex = 0;
	}
	$awards[theActionIndex].style.display = 'list-item';
});

$('#libra .featprod-previous a').click(function() {
	$awards[theActionIndex].style.display = 'none';
	if(theActionIndex > 0) {		
		theActionIndex--;
	} else {
		theActionIndex = theLength-1;
	}
	$awards[theActionIndex].style.display = 'list-item';
})