// (C) 2010 The SmartTHING Limited // Removes title links and makes the title a large font $("table.NewsReaderResultsList a[id*='_lnkTitle']").each(function() { var url = $(this).attr('href'); if (typeof(url) != "undefined") { if (url.indexOf("pid=")) { // Detects internal links $(this).after('

' + $(this).text() + '

'); $(this).remove(); } } });