$(document).ready(function() {

//preload images
  image1 = new Image();
  image1.src = "images/tab_hover.png";
  image2 = new Image();
  image2.src = "images/tab.png";

  
//Tabs
$('#tabs > dt.active').next().slideDown('normal');  

$('#tabs > dt').bind('click', this, function() {
  var self = this;
  $(this).not('.active').next().slideDown('normal', function() {  $(self).addClass('active')   });
  $('#tabs > dt.active').next().slideUp('normal', function() {  $(this).prev().removeClass('active');   });					
  });
});
