$(document).ready(function(){
  var i = 0;
  $("div.overout").mouseover(function(){
  $(this).height("120px")
  .css({cursor:"auto"});
  }).mouseout(function(){
  $(this).height("60px")
  .css({cursor:"auto"});
  });
  
  $(function(){$('#tabsdepan').tabs();});
  
   // add BeautyTips functionality
  $('#mostpop').find('[title]').bt({
    preShow: function() {
      $(this).data('origBG', $(this).css('background-color'));
      $(this).css('background-color', '#FFC');
    },
    postHide: function() {
      $(this).css('background-color', $(this).data('origBG'));
    }
  });
  
  // add the descriptions link functionality
  $('#printlink').click(function(){
    $('#mostpop td[bt-xtitle]').each(function(){
      $(this).wrapInner('<strong></strong>');
      $(this).append('<div>' + $(this).attr('bt-xtitle') + '</div>');
    });
    $(this).remove();
  });
  
  $('#latest').find('[title]').bt({
    preShow: function() {
      $(this).data('origBG', $(this).css('background-color'));
      $(this).css('background-color', '#FFC');
    },
    postHide: function() {
      $(this).css('background-color', $(this).data('origBG'));
    }
  });
  
  // add the descriptions link functionality
  $('#printlink').click(function(){
    $('#latest td[bt-xtitle]').each(function(){
      $(this).wrapInner('<strong></strong>');
      $(this).append('<div>' + $(this).attr('bt-xtitle') + '</div>');
    });
    $(this).remove();
  });
});