$(document).ready(function() {
	customButtonColor();
});

function customButtonColor() {
	$("div#gumbi-top a").each(function(index) {
		if($(this).html()=="Latest activist news")
			$(this).css("color", "red");
	});
}
