$(function() {$.syntax({root: "http://s.tobioka.net/static/jquery-syntax/"});if ($('body.individual.single').length) {  var toc = ['<dl class="others" id="toc_wrapper"><dt id="toc_head"><a href="#">Table of contents</a></dt><dd id="toc_body"><ul>'];  toc.push('<li><a href="" class="top">Top</a></li>');  $('.textBody h3').each(function() {    toc.push('<li><a href="" class="content">');    toc.push($(this).text());    toc.push('</a></li>');  });  toc.push('</ul></dd></dl>');  $('.others').after(toc.join(''));}$('#toc_head a').live('click', function() {  $('#toc_body').slideToggle('fast');  return false;});$('#toc_body ul li a.content').live('click', function() {  //$('html,body').scrollTop($('.textBody h3').eq($('#toc_body ul li a').index($(this))).offset().top);  $('html,body').animate({     scrollTop: $('.textBody h3').eq($('#toc_body ul li a.content').index($(this))).offset().top  }, 'fast');  return false;});$('#toc_body ul li a.top').live('click', function() {  $('html,body').animate({     scrollTop: 0  }, 'fast');  return false;});//$.facebox.settings.closeImage = 'http://file.blog.bornneet.com/closelabel.png'//$.facebox.settings.loadingImage = 'http://file.blog.bornneet.com/loadingIcon.gif'//$('a[rel*=facebox]').facebox();$('a[rel*=facebox]').fancybox();});