jQuery.noConflict();
jQuery(document).ready(function($) {
	$('a').each(function() {
		if ($(this).html() === $(this).attr('href')) {
			var url = "scripts/link_parse.php?url=" + encodeURIComponent($(this).attr('href'));
			$(this).html("Loading...Please wait...").load(url);
		}
		if ($(this).html() === "Unreal Portal") {
			$(this).html('Home');
			$(this).attr({ title: 'Go to Portal' });
		}
		if ($(this).html() === "View New Content") {
			$(this).html('View New Posts');
		}
		if ($(this).html() === "iContact") {
			$(this).html('Application');
		}
	});
});
