Please help modify my small script

Please help modify my small script

Hi! I'm trying to modify my code but I'm new to Javascript and I need some help to figure it out.
When the page is fully loaded for the first time, click on the first tab (profile) and you'll see the problem.

Location of the file:  http://bit.ly/gLilCo

This is the code:
  1. $(window).load(function(){
  2. $('#page2').delay(200);
  3. $('#page2').show('slow');
  4. $('#content>dd').css({display:'block'})
  5. $('#thumbs').jScrollPane({
  6.   showArrows:false,
  7.   scrollbarWidth:28,
  8.   dragMaxHeight:82,
  9.     })
  10.  
  11. $('#thumbs li a').live('click',function(){
  12. $('#pic').attr('src',$(this).attr('href')).bind('load',function(){
  13. $(this).css({opacity:0}).stop().animate({opacity:1})
  14. })
  15. return false
  16. }).each(function(){
  17. var tmp=new Image()
  18. tmp.src=this.href
  19. })
  20.  
  21. $('#content>dd').css({display:'none'})
  22. })

  23. $(function(){
  24. $('#content:not(.nav_block)>dt:not(.active) a,footer .privacy:not(.active) a[rel=privacy]').live('click',function(){
  25. var next=this.rel=='privacy'?
  26. $('#privacy'):$(this).parent().next(),
  27. width=next.width(),
  28. parent=next.parent(),
  29. visible=parent.find('>dd:visible').css({overflow:'hidden'})
  30. parent.addClass('nav_block')
  31. $('#content>dt,.privacy').removeClass('active')
  32. $(this).parent().addClass('active')
  33. if(this.rel=='privacy')
  34. $('#content>dt>a').removeClass('active').animate({opacity:0})
  35. if(parent.css('left')!=0)
  36. next.parent().animate({left:0})
  37. next.show().css({width:'64px'}).stop().animate({width:width+'px'},{
  38.  step:visible.length?function(now){
  39. visible.width(width-now)
  40. }:'',complete:function(){
  41. next.css({overflow:'visible'})
  42. visible.css({width:width+'px'}).hide()
  43. parent.removeClass('nav_block')
  44. }})
  45. return false
  46. })
  47. $('.active a,#content.nav_block').live('click',function(){
  48. return false
  49. })