$(function() {
  var titles = new Array();
  
  $('#services p').each(function(i) {
    var $this = $(this);
    $this.hide();
    var klass = 'massage_' + i;
    titles.push('<li class="' + klass + '"><img src="/images/massage_bullet.png" />' + $this.attr('title') + '</li>');
    $this.addClass(klass);
  });
  
  $('#services').prepend('<ul class="menu">' + titles.join('') + '</ul>');

  if($('#services').supersleight)
    $('#services').supersleight({shim: '/images/x.gif'});
  
  $('#services li').click(function() {
    var $this = $(this);
    
    if($this.hasClass('selected'))
      return;
    
    $('#services li').removeClass('selected');
    
    var klass = $this.attr('class');
    $('#services p').hide();
    $('#services p.' + klass).fadeIn();
    
    $this.addClass('selected');
  });
  
  $('#services li:first-child').click();
});
