         var toc="";
         var dex=0;
         var c=0;
         $(document).ready(function(){
            var b=jQuery.browser;
            if(b['msie'] && b['version']<=6)    
                {
                var l=$('#doc2').position().left+500;                     
                $('#header_c').css({left:l,position:"absolute",top:"225px"});
                
                }
            else
                {
                $('#header_c').css({left:"280px"});
                }
            $('h2').each(function(intIndex ){
                c++;
                toc=$(this).attr("id");
                if(typeof(toc)=='undefined')    
                    {
                     toc='hl'+intIndex;
                     $(this).attr({id:toc});
                    }
                if(c>1){$(this).addClass("padTop");}
                $('#toc').append('<li class="toc_main" id="TOC'+intIndex+'">'+$(this).html()+'</li>');
                $('#TOC'+intIndex).bind("click",{t:$('#'+toc).position().top,o:toc,c:$('#'+toc).html()},function(e){$('html,body').animate({scrollTop: e.data.t}, 500);glow(e.data.o,e.data.c);return false;});
            });
         if(c) 
            {
            $('#header_c ul').prepend('<li class="toc_first">This Page Contents</li>');
            }
         $('#toc li.toc_main').hover(function(){$(this).addClass("hov");},function(){$(this).removeClass("hov")});
         });
         function glow(o,c)
            {
            document.title="Service Underwriting Ltd: "+c;
            $('#'+o).animate({color:"red"},1000).animate({color:"black"},2000);
            }
            

