var d = document;

function init(){
    var a = d.getElementsByTagName("a");
    for(var i=0;i<a.length;i++) if(a[i].href == d.location.href) {
	    a[i].href = "javascript:void(0);";
	    $('a:eq(' + i + ')').css('cursor','default');
    }
}
onload = init;

$(document).ready(function(){
   $('div.content-area li').wrapInner('<span></span>');
   $('div.content-area ol').wrapInner('<span></span>');
 });
