$(document).ready(function(){
	
	if($(".news-latest-container")){
		
		$(".news-latest-category").each(function(){
			var replaced = $(this).text().replace(/ - Frontpage/g, "");
			$(this).text(replaced);
		});
		
	}
});
