$('#home-right-top-feature-txt ul').hide();

var featuretxt = new Array();

$('#home-right-top-feature-txt li').each(function(index) {
	featuretxt[index] = $(this).html();
}); 

var random = Math.floor(Math.random()*featuretxt.length);
$('#home-right-top-feature-txt').append(featuretxt[random]);
