/*

	This script deals with the generic finance pages by either redirecting some links or removing the links altogeter

*/

$(document).ready(function () {
	
	//Redirect all links to their altlinks
	$("a[althref]").each(function(i) {
		$(this).attr("href", $(this).attr("althref"));
	});
	
	//Replace all geneic links with text
	$("a[class='notgenericlink']").each(function(i) {
		$(this).replaceWith($(this).text());
	});
	
});

